Add textarea styling

This commit is contained in:
Alice Gaudon 2020-08-30 21:02:57 +02:00
parent 4316daf241
commit 7143e7a843

View File

@ -378,7 +378,7 @@ form {
} }
} }
input, select, .input-group { input, select, textarea, .input-group {
border: 0; border: 0;
color: $defaultTextColor; color: $defaultTextColor;
background: lighten($panelBackground, 4%); background: lighten($panelBackground, 4%);
@ -393,7 +393,7 @@ form {
} }
} }
input, select, .form-display { input, select, textarea, .form-display {
display: block; display: block;
padding: 32px 8px 8px 8px; padding: 32px 8px 8px 8px;
width: 100%; width: 100%;
@ -424,6 +424,11 @@ form {
} }
} }
textarea {
resize: vertical;
min-height: 100px;
}
input[type=color] { input[type=color] {
height: calc(32px + 8px + 32px); height: calc(32px + 8px + 32px);
} }