Remove deprecated slash division
This commit is contained in:
parent
9771d67af9
commit
64cc54e717
1 changed files with 4 additions and 2 deletions
|
@ -20,6 +20,8 @@
|
||||||
* SPDX-License-Identifier: AGPL-3.0-or-later
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@use "sass:math";
|
||||||
|
|
||||||
*,
|
*,
|
||||||
*::before,
|
*::before,
|
||||||
*::after {
|
*::after {
|
||||||
|
@ -149,10 +151,10 @@ input[type="submit"] {
|
||||||
}
|
}
|
||||||
|
|
||||||
main {
|
main {
|
||||||
width: (200% / 3);
|
width: math.div(200%, 3);
|
||||||
}
|
}
|
||||||
|
|
||||||
aside {
|
aside {
|
||||||
width: (100% / 3);
|
width: math.div(100%, 3);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue