Skip to content

Commit ea5e551

Browse files
committed
fix sass division warnings
1 parent 402752e commit ea5e551

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

client/styles/components/_collection.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@
108108
width: #{math.div(350, $base-font-size)}rem;
109109
@media only screen and (max-width: 520px) {
110110
max-width: 90vw;
111-
right: -#{120 / $base-font-size}rem;
111+
right: -#{math.div(120, $base-font-size)}rem;
112112
}
113113
}
114114

client/styles/components/_overlay.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
}
5353

5454
.overlay__actions-mobile {
55-
padding-left: #{24/ $base-font-size}rem;
55+
padding-left: #{math.div(24, $base-font-size)}rem;
5656
}
5757

5858
.overlay__title {

0 commit comments

Comments
 (0)