1
0
mirror of https://github.com/mgerb/react-starter synced 2026-01-10 17:12:48 +00:00
This commit is contained in:
2018-01-03 22:36:25 +01:00
parent ff21d15083
commit f4b5cd04a5
12 changed files with 787 additions and 541 deletions

View File

@@ -2,9 +2,9 @@
.Navbar__nav {
height: 40px;
border-bottom: 1px solid $light3;
border-bottom: 1px solid $light1;
display: flex;
background-color: $light1;
background-color: $gray--lighter;
}
.Navbar__header {
@@ -14,7 +14,7 @@
justify-content: space-between;
padding-left: 10px;
padding-right: 10px;
background-color: $dark2;
background-color: $background;
}
.Navbar__item {
@@ -27,15 +27,15 @@
&:hover {
color: $fontSecondary;
border-bottom: 2px solid $primaryBlue;
border-bottom: 2px solid $blue;
}
& + .Navbar__item {
border-left: 1px solid $light3;
border-left: 1px solid $gray;
}
}
.Navbar__item--active {
color: $fontSecondary;
border-bottom: 2px solid $primaryBlue;
border-bottom: 2px solid $blue;
}