Skip to content

Commit

Permalink
ktl-1766 fix: fix header styles (#3940)
Browse files Browse the repository at this point in the history
  • Loading branch information
krutilov authored and berezinant committed Dec 2, 2024
1 parent 2ae64db commit 76a7004
Show file tree
Hide file tree
Showing 15 changed files with 26 additions and 12 deletions.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -204,5 +204,11 @@
@media (width >= $breakpoint-desktop-min) {
display: none;
}

@media (width <= $breakpoint-tablet-max) {
& + :not(.sidebar--inner) {
margin-top: 12px;
}
}
}
}
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 @@ -556,6 +556,11 @@
display: none;
}
}
@media (max-width: 899px) {
.dropdown--header + :not(.sidebar--inner) {
margin-top: 12px;
}
}
:root {
--breakpoint-desktop-min:900px;
--breakpoint-tablet-max:899px;
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

Large diffs are not rendered by default.

0 comments on commit 76a7004

Please sign in to comment.