Locking to attribute value

This commit is contained in:
rug
2026-01-29 15:35:20 +01:00
parent ba782156b1
commit dc7caf4762

View File

@@ -84,13 +84,13 @@
// ----------------------------------------------------------------
// The height should be auto only when auto-grow is enabled.
:host([auto-grow]) .textarea-wrapper-inner {
:host([auto-grow=true]) .textarea-wrapper-inner {
height: auto;
}
// The min and max height should be inherited if auto-grow is enabled.
// This allows the textarea to grow and shrink as needed.
:host([auto-grow]) .native-wrapper {
:host([auto-grow=true]) .native-wrapper {
min-height: inherit;
max-height: inherit;
}