mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-12-07 15:25:41 +01:00
Use calc instead of sass math
This commit is contained in:
parent
0476c7204f
commit
0d610e364c
1 changed files with 1 additions and 2 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue