Skip to content

Commit 15c6485

Browse files
committed
fix(VTextarea): correct area scaling when grown vertically in flex
fixes #20861
1 parent d609024 commit 15c6485

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

packages/vuetify/src/components/VInput/VInput.sass

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
.v-input--horizontal
3434
grid-template-areas: "prepend control append" "a messages b"
3535
grid-template-columns: max-content minmax(0, 1fr) max-content
36-
grid-template-rows: auto auto
36+
grid-template-rows: 1fr auto
3737

3838
.v-input__prepend
3939
margin-inline-end: $input-affix-margin-inside

packages/vuetify/src/components/VTextarea/VTextarea.sass

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@
4343
opacity: 0
4444
flex: 1
4545
min-width: 0
46+
height: 100%
4647
transition: .15s opacity settings.$standard-easing
4748

4849
&:focus,

0 commit comments

Comments
 (0)