AdminLTE/scss/layout/_main-footer.scss

29 lines
459 B
SCSS
Raw Normal View History

2021-03-26 01:16:42 +00:00
//
// Core: Main Footer
//
.main-footer {
grid-area: main-footer;
2021-03-26 01:16:42 +00:00
background-color: $main-footer-bg;
border-top: $main-footer-border-top;
color: $main-footer-color;
padding: $main-footer-padding;
2021-05-08 16:43:00 +00:00
width: inherit;
2021-03-26 01:16:42 +00:00
2021-05-13 01:17:47 +00:00
// .text-sm &,
// &.text-sm {
// padding: $main-footer-padding-sm;
// }
2021-03-26 01:16:42 +00:00
}
2021-05-08 16:43:00 +00:00
.layout-footer-fixed {
.main-footer {
position: fixed;
bottom: 0;
}
.content-wrapper {
2021-05-08 16:43:00 +00:00
margin-bottom: $main-footer-height;
}
}