Skip to content

Commit

Permalink
ktl-1766 fix: fix header styles
Browse files Browse the repository at this point in the history
  • Loading branch information
krutilov committed Nov 27, 2024
1 parent 7c434b8 commit 7668e92
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,12 @@
}
}

@media (width <= $breakpoint-tablet-max) {
li.dropdown--option:first-of-type {
margin-top: 12px;
}
}

&--overlay {
position: absolute;
z-index: 4;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
color: var(--color-text-dt);

font: var(--font-h4);
border-radius: var(--size-s1);

&:focus-visible {
outline: var(--focus-outline);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -511,6 +511,11 @@
text-transform: uppercase;
}

@media (max-width: 899px) {
.dropdown li.dropdown--option:first-of-type {
margin-top: 12px;
}
}
.dropdown--overlay {
background-color: hsla(0, 0%, 54%, 0.5);
bottom: 0;
Expand Down Expand Up @@ -851,6 +856,8 @@

.library-name--link {
align-items: center;
border-radius: 4px;
border-radius: var(--size-s1);
color: hsla(0, 0%, 100%, 0.96);
color: var(--color-text-dt);
display: flex;
Expand Down
Loading

0 comments on commit 7668e92

Please sign in to comment.