_main-footer.scss 394 B

123456789101112131415161718192021222324
  1. //
  2. // Core: Main Footer
  3. //
  4. .main-footer {
  5. background-color: $main-footer-bg;
  6. border-top: $main-footer-border-top;
  7. color: $main-footer-color;
  8. padding: $main-footer-padding;
  9. .text-sm &,
  10. &.text-sm {
  11. padding: $main-footer-padding-sm;
  12. }
  13. }
  14. @include dark-mode() {
  15. .main-footer {
  16. background-color: $main-footer-bg-alt;
  17. border-top-color: tint-color($dark, 10%);
  18. }
  19. }
  20. //