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