Skip to content

Commit

Permalink
fix #1429
Browse files Browse the repository at this point in the history
  • Loading branch information
inc2734 committed Aug 14, 2024
1 parent 273ab74 commit 434ab2b
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions src/css/app/layout/_header/_app.scss
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@
}

@mixin overlay-header-white-text() {
@include overlay-header();
color: var(--overlay-header-text-color);

.c-hamburger-btn__bar {
Expand All @@ -86,14 +87,12 @@

&--overlay-sm {
@include core.media-max(md) {
@include overlay-header();
@include overlay-header-white-text();
}
}

&--overlay-lg {
@include core.media-min(lg) {
@include overlay-header();
@include overlay-header-white-text();
}
}
Expand All @@ -103,8 +102,14 @@
*/
@mixin sticky-overlay-header() {
position: fixed;
@include overlay-header();
@include overlay-header-white-text();
right: 0;
left: 0;
background-color: transparent;
color: var(--overlay-header-text-color);

.c-hamburger-btn__bar {
background-color: var(--overlay-header-text-color);
}
}

&--sticky-overlay-sm {
Expand Down

0 comments on commit 434ab2b

Please sign in to comment.