sifatbaho

This commit is contained in:
2026-04-05 05:31:24 +05:00
commit df3d57f503
2609 changed files with 369825 additions and 0 deletions

66
resources/scss/structure/_footer.scss vendored Executable file
View File

@@ -0,0 +1,66 @@
//
// _footer.scss
//
.footer {
bottom: 0;
padding: 20px calc(#{$grid-gutter-width} * 0.5);
position: absolute;
right: 0;
color: $footer-color;
left: $vertical-menu-width;
height: $footer-height;
background-color: $footer-bg;
@media (max-width: 991.98px) {
left: 0;
}
}
[data-layout="vertical"] {
&[data-sidebar-size="sm"],
&[data-sidebar-size="sm-hover"] {
.footer {
left: $vertical-menu-width-sm;
@media (max-width: 767.98px) {
left: 0;
}
}
}
&[data-sidebar-size="md"] {
.footer {
left: $vertical-menu-width-md;
@media (max-width: 991.98px) {
left: 0;
}
}
}
}
[data-layout="horizontal"]{
.footer {
left: 0 !important;
}
}
[data-layout="vertical"][data-layout-style="detached"] {
@media (min-width: 1024.1px) {
.footer {
left: 0 !important;
background-color: transparent;
}
}
}
[data-layout="twocolumn"] {
.footer {
@media (min-width: 768.1px) {
left: calc(#{$twocolumn-menu-iconview-width} + #{$twocolumn-menu-width});
}
}
}