Skip to content
Snippets Groups Projects
Unverified Commit 88f0eaeb authored by Conrad Zelck's avatar Conrad Zelck
Browse files

style: reduce select border radius to 3px


They are a bit smaller then buttons so their border radius won't fit.

Signed-off-by: default avatarConrad Zelck <git@simpel.cc>
parent f4c1479d
No related branches found
No related tags found
No related merge requests found
......@@ -223,10 +223,18 @@ input[type=checkbox]:focus {
button, input, select {
border: 2px solid white;
}
button, input {
-webkit-border-radius: 5px;
border-radius: 5px;
}
select {
-webkit-border-radius: 3px;
border-radius: 3px;
}
input[type="file"] {
border: 0;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment