You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
414 B
SCSS
27 lines
414 B
SCSS
/* Header */
|
|
.header{
|
|
position:absolute;
|
|
width:100%;
|
|
background: $white;
|
|
border-bottom:1px solid $lighterWhite;
|
|
z-index:9;
|
|
}
|
|
.header-container{
|
|
margin:0 auto;
|
|
position:relative;
|
|
padding:1.305rem;
|
|
/*max-height:52px;*/
|
|
max-width:960px;
|
|
display:flex;
|
|
justify-content:space-between;
|
|
align-items:center;
|
|
}
|
|
.header--scroll{
|
|
position:fixed;
|
|
}
|
|
.header-container--scroll{
|
|
padding:.24rem 1.24rem;
|
|
}
|
|
.logo{font-weight:bold}
|
|
|