Use calc instead of sass math

This commit is contained in:
Michael Shamoon 2022-02-21 08:50:50 -08:00
parent 0476c7204f
commit 0d610e364c

View File

@ -1,4 +1,3 @@
@use "sass:math";
@import "/src/theme";
tr {
@ -25,7 +24,7 @@ $paperless-card-breakpoints: (
@media(min-width: $width) {
> * {
flex: 0 0 auto;
width: math.div(100%, $n-cols);
width: calc(100% / $n-cols);
}
}
}