24 lines
444 B
SCSS
24 lines
444 B
SCSS
@import "../../assets/scss/globals";
|
|
$border-width: 2px;
|
|
|
|
.navigation {
|
|
width: 100%;
|
|
display: flex;
|
|
flex-flow: row nowrap;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
font-size: 12px;
|
|
|
|
&__item {
|
|
padding: 0.8rem 2rem;
|
|
transition: border-bottom 0.2s;
|
|
border-bottom: $border-width solid $dark-blue;
|
|
cursor: pointer;
|
|
color: $white;
|
|
|
|
&:hover {
|
|
border-bottom: $border-width solid $white;
|
|
}
|
|
}
|
|
}
|