From 0d610e364c4f364da9f709de294971f22ba5707c Mon Sep 17 00:00:00 2001 From: Michael Shamoon <4887959+shamoon@users.noreply.github.com> Date: Mon, 21 Feb 2022 08:50:50 -0800 Subject: [PATCH] Use calc instead of sass math --- .../app/components/document-list/document-list.component.scss | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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 0ef495cd8..a14158f77 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); } } }