Client - add border radius on input and button

This commit is contained in:
Sam
2021-08-18 17:13:54 +02:00
parent 8247751281
commit 064a7f66c8
4 changed files with 6 additions and 4 deletions

View File

@ -24,7 +24,7 @@ a {
}
input {
border-radius: 0;
border-radius: $border-radius;
border: solid 1px var(--input-border-color);
&:disabled {
@ -40,7 +40,7 @@ label {
button {
background: var(--app-background-color);
border: solid 1px var(--app-color);
border-radius: 0;
border-radius: $border-radius;
box-shadow: 2px 2px 2px var(--app-shadow-color);
color: var(--app-color);
padding: 6px 14px;