_main-footer.scss 587 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. //
  2. // Core: Main Footer
  3. //
  4. .main-footer {
  5. grid-area: main-footer;
  6. background-color: $main-footer-bg;
  7. border-top: $main-footer-border-top;
  8. color: $main-footer-color;
  9. padding: $main-footer-padding;
  10. width: inherit;
  11. .text-sm &,
  12. &.text-sm {
  13. padding: $main-footer-padding-sm;
  14. }
  15. }
  16. .layout-footer-fixed {
  17. .main-footer {
  18. position: fixed;
  19. bottom: 0;
  20. }
  21. .content-wrapper {
  22. margin-bottom: $main-footer-height;
  23. }
  24. }
  25. @include dark-mode() {
  26. .main-footer {
  27. background-color: $main-footer-bg-alt;
  28. border-top-color: tint-color($dark, 10%);
  29. }
  30. }
  31. //