mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-27 08:42:09 +08:00
```
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
```
11 lines
263 B
SCSS
Vendored
11 lines
263 B
SCSS
Vendored
.form-kit__control-textarea {
|
|
// prevents firefox/chrome to add spacing under textarea
|
|
display: block;
|
|
|
|
@include default-input {
|
|
// reset textarea styles
|
|
height: 150px !important;
|
|
min-width: auto !important;
|
|
padding: 0.5em !important;
|
|
}
|
|
}
|