Feature: Improve Dashboard UI (#630)

This commit is contained in:
Nithin David Thomas
2020-03-22 11:44:40 +05:30
committed by GitHub
parent 29bb2bff3a
commit fe70843fae
14 changed files with 111 additions and 51 deletions

View File

@@ -21,7 +21,17 @@
}
.tabs-title {
@include margin($zero $space-one);
@include margin($zero $space-slab);
.badge {
background: $color-background;
border-radius: $space-small;
color: $color-gray;
font-size: $font-size-micro;
font-weight: $font-weight-black;
margin-left: $space-smaller;
padding: $space-smaller;
}
&:first-child {
margin-left: 0;
@@ -40,10 +50,13 @@
a {
@include position(relative, 1px null null null);
transition: all .15s $ease-in-out-cubic;
align-items: center;
border-bottom: 2px solid transparent;
color: $medium-gray;
display: flex;
flex-direction: row;
font-size: $font-size-small;
transition: all .15s $ease-in-out-cubic;
}
&.is-active {
@@ -51,5 +64,10 @@
border-bottom-color: $color-woot;
color: $color-woot;
}
.badge {
background: $color-extra-light-blue;
color: $color-woot;
}
}
}