You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
538 B

  1. @import 'variables';
  2. .glitch.local-settings__navigation__item {
  3. display: block;
  4. padding: 15px 20px;
  5. color: inherit;
  6. background: $primary-text-color;
  7. border-bottom: 1px $ui-primary-color solid;
  8. cursor: pointer;
  9. text-decoration: none;
  10. outline: none;
  11. transition: background .3s;
  12. &:hover {
  13. background: $ui-secondary-color;
  14. }
  15. &.active {
  16. background: $ui-highlight-color;
  17. color: $primary-text-color;
  18. }
  19. &.close, &.close:hover {
  20. background: $error-value-color;
  21. color: $primary-text-color;
  22. }
  23. }