♻️ Refactor dashboard (add teams)

This commit is contained in:
Andrey Antukh 2020-09-25 14:51:21 +02:00 committed by Alonso Torres
parent 47d347f357
commit b3252ec2b2
52 changed files with 1842 additions and 1421 deletions

View file

@ -9,6 +9,7 @@
$color-white: #ffffff;
$color-black: #000000;
$color-canvas: #E8E9EA;
$color-dashboard: #F6F6F6;
// Main color
$color-primary: #31EFB8;

View file

@ -24,6 +24,7 @@ $size-6: 2rem;
$br-small: 3px;
$br-medium: 5px;
$br-big: 8px;
$br-huge: 12px;
// Alignments
.text-left {

View file

@ -49,7 +49,7 @@
.btn-secondary {
@extend %btn;
background: $color-white;
border: 1px solid $color-black;
border: 1px solid $color-gray-20;
color: $color-black;
&:hover {
background: $color-primary;
@ -97,16 +97,18 @@
.btn-icon-light {
@extend %btn;
background: $color-gray-10;
color: $color-gray-40;
background: $color-white;
border: 1px solid $color-gray-20;
color: $color-black;
padding: $x-small;
svg {
fill: $color-gray-40;
fill: $color-black;
}
&:hover {
background: $color-primary;
border-color: $color-primary;
svg {
fill: $color-gray-60;
fill: $color-black;
}
}
}