mirror of
https://github.com/discourse/discourse.git
synced 2024-11-30 11:55:09 +08:00
300ef67481
Rewrite the admin flag form to use FormKit. This is a draft because waiting for Checkbox improvements.
16 lines
338 B
SCSS
16 lines
338 B
SCSS
.form-kit__control-textarea {
|
|
@include default-input;
|
|
|
|
// reset textarea styles
|
|
width: 100% !important;
|
|
margin: 0 !important;
|
|
min-width: auto !important;
|
|
padding: 0.5em !important;
|
|
|
|
// prevents firefox/chrome to add spacing under textarea
|
|
display: block;
|
|
|
|
height: 150px;
|
|
border-radius: var(--d-input-border-radius);
|
|
}
|