From 64cc54e717c57f14ff86a189fd75346e88802575 Mon Sep 17 00:00:00 2001 From: Nikita Karamov Date: Sat, 18 Mar 2023 01:30:09 +0100 Subject: [PATCH] Remove deprecated slash division --- src/styles/main.scss | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/styles/main.scss b/src/styles/main.scss index 48c2da8..e626f42 100644 --- a/src/styles/main.scss +++ b/src/styles/main.scss @@ -20,6 +20,8 @@ * SPDX-License-Identifier: AGPL-3.0-or-later */ +@use "sass:math"; + *, *::before, *::after { @@ -149,10 +151,10 @@ input[type="submit"] { } main { - width: (200% / 3); + width: math.div(200%, 3); } aside { - width: (100% / 3); + width: math.div(100%, 3); } }