Add textarea styling

This commit is contained in:
Alice Gaudon 2020-08-30 21:02:57 +02:00
parent 4316daf241
commit 7143e7a843
1 changed files with 7 additions and 2 deletions

View File

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