_blog.scss 367 B

123456789101112131415161718192021
  1. .blog {
  2. @include themify($themes) {
  3. background-color: themed('body-background-color');
  4. }
  5. &__bg {
  6. @include themify($themes) {
  7. background-color: themed('body-background-color');
  8. }
  9. }
  10. &__header {
  11. @include flexbox();
  12. @include justify-content(center);
  13. @include align-items(center);
  14. }
  15. .subtitle {
  16. margin: 0.25rem 0;
  17. }
  18. }