mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
Use calc instead of sass math
This commit is contained in:
parent
0476c7204f
commit
0d610e364c
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user