admin-conf.scss 627 B

12345678910111213141516171819202122232425262728293031323334353637
  1. // Admin configuration page
  2. // Remove vertical padding and add shadows to admin conf grid
  3. .card-admin-settings-grid {
  4. @extend .shadow-sm;
  5. .card-body {
  6. @extend .py-1;
  7. }
  8. }
  9. // Restyle settings group card to be pretend-button
  10. .card-admin-settings-card {
  11. @extend .d-block;
  12. @extend .m-1;
  13. @extend .p-2;
  14. @extend .rounded;
  15. line-height: $line-height-sm;
  16. color: $body-color;
  17. &:hover,
  18. &:focus {
  19. text-decoration: none;
  20. background-color: $light;
  21. }
  22. }
  23. // Reset settings group name size
  24. .card-admin-settings-card h5 {
  25. @extend .mb-1;
  26. font-size: $font-size-base;
  27. line-height: $line-height-sm;
  28. }