mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2026-01-20 20:01:25 +00:00
19 lines
313 B
SCSS
19 lines
313 B
SCSS
@use '../shared/input.scss' as *;
|
|
@use "@@/styles/shared" as *;
|
|
|
|
@include input(ds-input);
|
|
|
|
textarea.ds-input {
|
|
height: auto;
|
|
min-height: $input-height;
|
|
resize: none;
|
|
}
|
|
|
|
textarea.ds-input-size-small {
|
|
min-height: $input-height-small;
|
|
}
|
|
|
|
textarea.ds-input-size-large {
|
|
min-height: $input-height-large;
|
|
}
|