Skip to content

Commit

Permalink
UI - update textarea height (#5423)
Browse files Browse the repository at this point in the history
This PR updates text question height in dataset annotation form, this
way, we save space and homogenize with textareas from other pages.

fix #5399
  • Loading branch information
leiyre authored Sep 3, 2024
1 parent 3c54ecb commit 879e104
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -115,10 +115,10 @@ export default {
<style lang="scss" scoped>
.container {
display: flex;
min-height: 4em;
padding: $base-space;
border: 1px solid $black-20;
border-radius: $border-radius-s;
min-height: 10em;
background: palette(white);
outline: none;
&.--editing {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export default {
padding: $base-space * 2;
border: 1px solid $black-20;
border-radius: $border-radius-s;
min-height: 10em;
min-height: 5em;
background: palette(white);
&:hover {
.button-copy {
Expand Down

0 comments on commit 879e104

Please sign in to comment.