Skip to content

Commit 879e104

Browse files
authored
UI - update textarea height (#5423)
This PR updates text question height in dataset annotation form, this way, we save space and homogenize with textareas from other pages. fix #5399
1 parent 3c54ecb commit 879e104

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

argilla-frontend/components/features/annotation/container/questions/form/text-area/TextAreaContents.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,10 +115,10 @@ export default {
115115
<style lang="scss" scoped>
116116
.container {
117117
display: flex;
118+
min-height: 4em;
118119
padding: $base-space;
119120
border: 1px solid $black-20;
120121
border-radius: $border-radius-s;
121-
min-height: 10em;
122122
background: palette(white);
123123
outline: none;
124124
&.--editing {

argilla-frontend/components/features/annotation/container/questions/form/text-area/TextAreaSuggestion.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export default {
3232
padding: $base-space * 2;
3333
border: 1px solid $black-20;
3434
border-radius: $border-radius-s;
35-
min-height: 10em;
35+
min-height: 5em;
3636
background: palette(white);
3737
&:hover {
3838
.button-copy {

0 commit comments

Comments
 (0)