Remove some rounded styled items

This commit is contained in:
Sonny 2020-05-24 21:59:17 +02:00
parent af2538a8dd
commit 2ee6ed8104
4 changed files with 1 additions and 7 deletions

View file

@ -6,7 +6,6 @@
width: 60%;
height: 80vh;
border-radius: 2px;
background-color: $white;

View file

@ -1,8 +1,6 @@
@import "../../lib/mixins";
.table {
@include rounded;
table-layout: fixed;
background-color: $white;
width: 90%;

View file

@ -3,7 +3,6 @@
background-color: lighten($gainsboro, +4%);
border: 1px $border-gray solid;
border-radius: 2px;
&:focus {
border: 1px $focus-blue solid;

View file

@ -1,3 +1 @@
@mixin rounded {
border-radius: 5px;
}