orgen-theme/assets/scss/custom/vendor/_headroom.scss
2023-04-06 16:58:33 +08:00

24 lines
488 B
PHP

.headroom {
will-change: transform;
background-color: inherit;
@include transition($transition-base);
}
.headroom--pinned {
width: 100%;
z-index: 3;
@extend .position-fixed;
transform: translateY(0%);
}
.headroom--unpinned {
@extend .position-fixed;
transform: translateY(-100%);
}
.headroom--not-top {
padding-top: .5rem;
padding-bottom: .5rem;
background-color: theme-color("default") !important;
box-shadow: 0 1px 10px rgba(130, 130, 134, 0.1);
}