Skip to content

Commit

Permalink
Fix sass whining
Browse files Browse the repository at this point in the history
  • Loading branch information
bhollis committed Dec 6, 2023
1 parent 879c263 commit 47e7000
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/app/loadout/loadout-ui/LoadoutParametersDisplay.m.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
@use 'sass:math';
@use '../../variables.scss' as *;

.loParams {
Expand All @@ -19,7 +20,7 @@
align-items: center;
font-weight: bold;
font-size: 11px;
gap: (2 / 11) * 1em;
gap: math.div(2, 11) * 1em;

img {
height: 14px;
Expand Down Expand Up @@ -54,7 +55,7 @@
.constraintRange {
composes: flexRow from '../../dim-ui/common.m.scss';
align-items: center;
gap: (2 / 11) * 1em;
gap: math.div(2, 11) * 1em;
:global(.app-icon) {
font-size: 0.7em;
}
Expand Down

0 comments on commit 47e7000

Please sign in to comment.