janahan-law/styles/sass/components/_sticky-header.scss
2025-08-08 11:53:47 +05:30

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