From: Michael Shamoon <4887959+shamoon@users.noreply.github.com> Date: Mon, 21 Feb 2022 16:50:50 +0000 (-0800) Subject: Use calc instead of sass math X-Git-Tag: ngx-1.6.0-rc1~69^2 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F65%2Fhead;p=thirdparty%2Fpaperless-ngx.git Use calc instead of sass math --- diff --git a/src-ui/src/app/components/document-list/document-list.component.scss b/src-ui/src/app/components/document-list/document-list.component.scss index 0ef495cd89..a14158f774 100644 --- a/src-ui/src/app/components/document-list/document-list.component.scss +++ b/src-ui/src/app/components/document-list/document-list.component.scss @@ -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); } } }