Skip to content

Commit

Permalink
fix mixed-decl warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
leagrdv committed Dec 20, 2024
1 parent 4977faa commit eb90512
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ post-popovercontainer {
--post-global-header-height: 72px;
--post-main-header-height: 56px;
--post-header-height: calc(var(--post-global-header-height) + var(--post-main-header-height));

background-color: #fafafa;
border: none;
border-top: 1px solid #e1e0dc;
Expand Down Expand Up @@ -143,9 +144,11 @@ post-popovercontainer {
display: flex;
justify-content: space-between;
min-height: 53px;
@include header-mx.mobile-header-interactive;
height: unset;
font-weight: 900;

@include header-mx.mobile-header-interactive() {
height: unset;
font-weight: 900;
}
}

@include media.max(lg) {
Expand Down
2 changes: 2 additions & 0 deletions packages/styles/src/components/header/_mixins.scss
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@
font-weight: var(--post-core-font-weight-700);
position: relative;

@content;

&::before {
content: '';
background-color: currentColor;
Expand Down

0 comments on commit eb90512

Please sign in to comment.