mirror of
https://github.com/mgerb/react-starter
synced 2026-01-09 00:22:49 +00:00
42 lines
728 B
SCSS
42 lines
728 B
SCSS
@import '../../scss/variables';
|
|
|
|
.Navbar__nav {
|
|
height: 40px;
|
|
border-bottom: 1px solid $light1;
|
|
display: flex;
|
|
background-color: $gray--lighter;
|
|
}
|
|
|
|
.Navbar__header {
|
|
display: flex;
|
|
height: 50px;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding-left: 10px;
|
|
padding-right: 10px;
|
|
background-color: $background;
|
|
}
|
|
|
|
.Navbar__item {
|
|
color: $fontPrimary;
|
|
text-decoration: none;
|
|
width: 100px;
|
|
transition: all 0.1s linear;
|
|
text-align: center;
|
|
line-height: 40px;
|
|
|
|
&:hover {
|
|
color: $fontSecondary;
|
|
border-bottom: 2px solid $blue;
|
|
}
|
|
|
|
& + .Navbar__item {
|
|
border-left: 1px solid $gray;
|
|
}
|
|
}
|
|
|
|
.Navbar__item--active {
|
|
color: $fontSecondary;
|
|
border-bottom: 2px solid $blue;
|
|
}
|