1
0
mirror of https://github.com/mgerb/react-starter synced 2026-01-09 00:22:49 +00:00
Files
react-starter/app/components/Navbar/Navbar.scss
2018-01-03 22:36:25 +01:00

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;
}