DEV: Fix all mixed-decls sass deprecations (#31343)

```
WARNING: Sass's behavior for declarations that appear after nested
rules will be changing to match the behavior specified by CSS in an upcoming
version. To keep the existing behavior, move the declaration above the nested
rule. To opt into the new behavior, wrap the declaration in `& {}`.

More info: https://sass-lang.com/d/mixed-decls
```
This commit is contained in:
Jarek Radosz
2025-02-13 23:58:19 +01:00
committed by GitHub
parent 8c9514b4ba
commit be513ed9a3
48 changed files with 226 additions and 213 deletions

View File

@ -73,11 +73,6 @@
align-self: stretch;
}
--100dvh: 100vh;
@supports (height: 100dvh) {
--100dvh: 100dvh;
}
&__input {
overflow-x: hidden;
width: 100%;
@ -85,7 +80,7 @@
outline: none;
border: 0;
resize: none;
max-height: calc(var(--100dvh) / 4);
max-height: 25dvh;
background: none;
padding: 0;
margin: 5px 0;