33 lines
561 B
SCSS
33 lines
561 B
SCSS
header{
|
|
z-index: 999;
|
|
position: relative;
|
|
@include inlineflex();
|
|
justify-content: center;
|
|
width: 100%;
|
|
border-bottom: 1px solid $light-blue;
|
|
height: 105px;
|
|
nav{
|
|
@include inlineflex();
|
|
justify-content: space-around;
|
|
height: 100px;
|
|
width: 70%;
|
|
flex-wrap: nowrap;
|
|
.logo{
|
|
display: flex;
|
|
a{
|
|
display: block;
|
|
margin: auto;
|
|
}
|
|
}
|
|
.reso{
|
|
@include inlineflex;
|
|
flex-wrap: nowrap;
|
|
a{
|
|
display: block;
|
|
width: 35px;
|
|
margin: auto 5px;
|
|
}
|
|
}
|
|
}
|
|
}
|