Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
 
 
 
 
 

77 рядки
1.5 KiB

  1. @use '../atoms/variables' as *;
  2. @use '../atoms/mixins' as *;
  3. // ─── Dunkle Top-Navigation ────────────────────────────────────────────────────
  4. .main-nav {
  5. background: $color-text-dark;
  6. display: flex;
  7. align-items: stretch;
  8. justify-content: space-between;
  9. padding: 0 $space-4;
  10. height: 44px;
  11. flex-shrink: 0;
  12. position: sticky;
  13. top: 0;
  14. z-index: 200;
  15. @include tablet { display: none; }
  16. }
  17. .main-nav__left,
  18. .main-nav__right {
  19. display: flex;
  20. align-items: stretch;
  21. gap: 0;
  22. }
  23. .main-nav__item {
  24. display: inline-flex;
  25. align-items: center;
  26. padding: 0 $space-4;
  27. font-size: $font-size-sm;
  28. font-weight: $font-weight-medium;
  29. color: rgba($color-white, 0.65);
  30. text-decoration: none;
  31. border-bottom: 2px solid transparent;
  32. transition: color $transition-fast, border-color $transition-fast;
  33. white-space: nowrap;
  34. &:hover {
  35. color: $color-white;
  36. }
  37. &--active {
  38. color: $color-white;
  39. border-bottom-color: var(--color-primary-light);
  40. }
  41. &--disabled {
  42. opacity: 0.35;
  43. pointer-events: none;
  44. cursor: default;
  45. }
  46. &--icon {
  47. gap: $space-1;
  48. svg { width: 16px; height: 16px; flex-shrink: 0; }
  49. }
  50. }
  51. .main-nav__separator {
  52. width: $space-4;
  53. }
  54. .main-nav__logout {
  55. display: inline-flex;
  56. align-items: center;
  57. justify-content: center;
  58. padding: 0 $space-3;
  59. color: rgba($color-white, 0.45);
  60. transition: color $transition-fast;
  61. svg { width: 18px; height: 18px; }
  62. &:hover { color: $color-white; }
  63. }