Skip to content

Commit

Permalink
Fix sass error in min calculation (#5872)
Browse files Browse the repository at this point in the history
Signed-off-by: Fanit Kolchina <[email protected]>
(cherry picked from commit 924a746)
Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] committed Dec 15, 2023
1 parent a194b8b commit 6fe446c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion _sass/_navigation-header.scss
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ $max-container: 1440px;
text-decoration: none;
text-indent: 100%;
position: relative;
left: min(80px, calc(100% - $header-banner-min-width));
left: Min(80px, calc(100% - $header-banner-min-width));
box-sizing: content-box;
@media screen and (max-width: 1339px) {
left: 0;
Expand Down

0 comments on commit 6fe446c

Please sign in to comment.