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

@ -28,7 +28,7 @@
background: var(--alert-background-color);
color: var(--alert-color);
border-radius: 4px;
border-radius: $border-radius;
margin: $default-margin;
padding: $default-padding;

View File

@ -21,7 +21,7 @@
.card {
border: solid 1px var(--card-border-color);
border-radius: 4px;
border-radius: $border-radius;
margin: $default-margin;
padding: $default-padding $default-padding * 2;
}