hello-theme/assets/scss/editor-styles.scss
Rami Yushuvaev 09931e8109
Fix: Gutenberg editor expanded disproportionately after adding support for theme.json [ED-16428] (#433)
* Fix: Update `theme.json` with basic settings

* Update

* Revert
2024-12-16 13:49:19 +02:00

45 lines
488 B
SCSS

/**
* WordPress editor styles
*/
@import "reset/variables";
body {
font-family: $font-family-base;
}
p {
margin-block-end: $sm-margin;
}
img {
max-width: 100%;
height: auto;
vertical-align: middle;
border-style: none;
}
pre {
font-family: monospace;
font-size: 1em;
white-space: pre-wrap;
}
code,
kbd,
pre,
samp {
font-size: $font-size-base;
}
code,
kbd,
pre,
samp {
font-family: $font-family-base;
font-size: $font-size-base;
}
blockquote {
font-style: italic;
}