Slightly increase the padding on <select> elements

Our select elements look more like buttons than they look like text
inputs, this means we should use slightly larger padding.
This commit is contained in:
Samuel Mannehed 2022-11-16 16:46:17 +01:00
parent f19e328dce
commit 4a0999a34e
1 changed files with 4 additions and 0 deletions

View File

@ -65,6 +65,10 @@ button {
padding-right: 20px; padding-right: 20px;
} }
select {
padding-right: 7px;
padding-left: 7px;
}
option { option {
color: black; color: black;
background: white; background: white;