_box.scss 303 B

12345678910111213
  1. .box {
  2. font-size: 0.925rem;
  3. font-family: $title-font;
  4. word-break: keep-all;
  5. padding: 0.5rem;
  6. margin: 2rem 1rem;
  7. border-radius: 0.5rem;
  8. @include themify($themes) {
  9. border: 1px solid themed('content-box-border-color');
  10. background-color: themed('content-box-background-color');
  11. }
  12. }