Fix deprecated Sass syntax

This commit is contained in:
Yannic Schroeder 2022-02-17 00:07:07 +01:00
parent 17617b82c6
commit d25604da81

View File

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