Remove deprecated slash division

This commit is contained in:
Nikita Karamov 2023-03-18 01:30:09 +01:00
parent 9771d67af9
commit 64cc54e717
No known key found for this signature in database
GPG Key ID: 41D6F71EE78E77CD
1 changed files with 4 additions and 2 deletions

View File

@ -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);
}
}