Skip to content

Commit

Permalink
fix(VTextarea): correct area scaling when grown vertically in flex
Browse files Browse the repository at this point in the history
fixes #20861
  • Loading branch information
KaelWD committed Jan 15, 2025
1 parent d609024 commit 15c6485
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion packages/vuetify/src/components/VInput/VInput.sass
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
.v-input--horizontal
grid-template-areas: "prepend control append" "a messages b"
grid-template-columns: max-content minmax(0, 1fr) max-content
grid-template-rows: auto auto
grid-template-rows: 1fr auto

.v-input__prepend
margin-inline-end: $input-affix-margin-inside
Expand Down
1 change: 1 addition & 0 deletions packages/vuetify/src/components/VTextarea/VTextarea.sass
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@
opacity: 0
flex: 1
min-width: 0
height: 100%
transition: .15s opacity settings.$standard-easing

&:focus,
Expand Down

0 comments on commit 15c6485

Please sign in to comment.