_main.scss 270 B

1234567891011121314
  1. .mid {
  2. @include themify($themes) {
  3. background-color: themed('back-background-color');
  4. }
  5. }
  6. .main {
  7. width: 100%;
  8. @include flexbox();
  9. @include justify-content(center);
  10. @include themify($themes) {
  11. background-color: themed('back-background-color');
  12. }
  13. }