Skip to content

Commit

Permalink
fix(admin-ui): Allow vertical resize of textarea
Browse files Browse the repository at this point in the history
Fixes #2255
  • Loading branch information
michaelbromley committed Jun 30, 2023
1 parent bcffd9c commit 86853ec
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
:host {
textarea {
resize: both;
//height: 6rem;
width: 100%;
}
}
5 changes: 4 additions & 1 deletion packages/admin-ui/src/lib/static/styles/global/_forms.scss
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,6 @@ select {
border-radius: var(--border-radius-input) !important;
border: 1px solid var(--color-weight-300);
padding: 5px !important;
height: 36px !important;
transition: background-color 0.2s, box-shadow 0.2s !important;
&:focus {
border-color: var(--color-primary-500);
Expand All @@ -78,6 +77,10 @@ select {
border-color: var(--color-weight-400);
}
}
input:not([type='checkbox']):not([type='radio']),
select {
height: 36px !important;
}

textarea {
&:focus {
Expand Down

0 comments on commit 86853ec

Please sign in to comment.