Files
2026-07-07 18:38:36 +05:30

26 lines
501 B
SCSS

/* Start Header-Scrollable Styles */
[data-header-position="scrollable"] {
.app-header {
@apply absolute;
}
&:not([data-menu-position="scrollable"]) {
@media screen and (min-width:992px) {
.app-sidebar {
// @apply relative! top-0!;
&.sticky-pin {
@apply fixed! top-0!;
}
}
}
&[data-toggled="open"] {
.app-sidebar {
&.sticky-pin {
@apply mt-0;
}
}
}
}
}
/* End Header-Scrollable Styles */