custom.scss 570 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. $primary-color: #2bcbba;
  2. .loader {
  3. color: $primary-color;
  4. }
  5. a {
  6. color: $primary-color;
  7. }
  8. a:hover {
  9. color: darken($primary-color, 10%);
  10. }
  11. .dropdown-header {
  12. padding-left: 1rem;
  13. }
  14. .dropdown-item.active, .dropdown-item:active {
  15. background-color: $primary-color;
  16. }
  17. .custom-switch-input:checked ~ .custom-switch-indicator {
  18. background: $primary-color;
  19. }
  20. .min-100 {
  21. min-height: 100px;
  22. }
  23. .card-options .dropdown-menu a:not(.btn) {
  24. margin-left: 0;
  25. }
  26. .wrap {
  27. display: flex;
  28. flex-wrap: wrap;
  29. }
  30. .col-login {
  31. max-width: 48rem;
  32. }