Skip to content

Commit

Permalink
fix(client): avoid CSS warning in Firefox (#9727)
Browse files Browse the repository at this point in the history
Warning was:

> Unexpected token ‘-1’ in media list.
  • Loading branch information
caugner authored Sep 26, 2023
1 parent 4f05c30 commit 967b786
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/ui/organisms/top-navigation-main/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@
align-self: flex-start;
}

@media screen and (max-width: #{$screen-lg -1}) {
@media screen and (max-width: #{$screen-lg - 1}) {
&.button {
--button-color: var(--text-secondary);
--button-padding: 0;
Expand Down

0 comments on commit 967b786

Please sign in to comment.