15 lines
175 B
SCSS
15 lines
175 B
SCSS
.sticky-header {
|
|
width: 100%;
|
|
position: fixed;
|
|
left: 0;
|
|
top: -200px;
|
|
z-index: 9999;
|
|
opacity: 0;
|
|
@include transition-time(0.7s);
|
|
}
|
|
|
|
.sticky-on {
|
|
opacity: 1;
|
|
top: 0;
|
|
}
|