_dropdown.scss 490 B

123456789101112131415161718192021
  1. .dropdown-item {
  2. color: $Color-Tailwind-Title;
  3. background: $Color-Body-Light;
  4. &:hover {
  5. background: $Color-Body-Light;
  6. color: $Color-Text-Main;
  7. box-shadow: inset 0 0 10vw 10vw rgb(255 255 255 / 6%);
  8. }
  9. &.active,
  10. &:active {
  11. background: $Color-Body-Light;
  12. color: $Color-Text-Main;
  13. box-shadow: inset 0 0 10vw 10vw rgb(255 255 255 / 10%);
  14. }
  15. &:focus {
  16. background: $Color-Body-Light;
  17. color: $Color-Text-Main;
  18. box-shadow: inset 0 0 10vw 10vw rgb(255 255 255 / 12%);
  19. }
  20. }