UX: No border-radius on textarea (#15594)

We already set border-radius to 0 on all input elements, but we didn't do that for textarea, which resulted in some of those elements appearing rounded on some browsers (iOS Safari)
This commit is contained in:
Jarek Radosz 2022-01-17 08:58:57 +01:00 committed by GitHub
parent f2be253b7c
commit 214bce6fad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -255,6 +255,8 @@ textarea {
height: auto;
background-color: var(--secondary);
border: 1px solid var(--primary-medium);
border-radius: 0;
&:focus {
@include default-focus;
}