_editor.scss 553 B

12345678910111213141516171819
  1. @import '../structure/responsive-logic';
  2. @import 'base';
  3. @import 'extends';
  4. body {
  5. --wp--typography--line-height: var(--global--line-height-body);
  6. color: var(--global--color-foreground);
  7. background-color: var(--global--color-background);
  8. font-family: var(--global--font-secondary);
  9. font-size: var(--global--font-size-root);
  10. font-weight: normal;
  11. -moz-osx-font-smoothing: grayscale;
  12. -webkit-font-smoothing: antialiased;
  13. }
  14. // Set font size of title block the same as body.
  15. .editor-post-title__block {
  16. font-size: var(--global--font-size-root);
  17. }