/*
Additional CSS for WordPress block editor.
*/

/* Increase width in block editor.
See: https://www.kevinleary.net/change-wordpress-gutenberg-editor-width/
and: https://developer.wordpress.org/block-editor/developers/themes/theme-support/#changing-the-width-of-the-editor
*/

/* Main column width */
.wp-block {
    max-width: 100%;
}

/* Width of "wide" blocks */
.wp-block[data-align="wide"] {
    max-width: 100%;
}

/* Width of "full-wide" blocks */
.wp-block[data-align="full"] {
    max-width: none;
}

/* Use sans serif for paragraph & list text, and use a sensible size. */
.editor-styles-wrapper p,
.editor-styles-wrapper ul,
.editor-styles-wrapper ol,
.editor-styles-wrapper dl,
.editor-styles-wrapper dt
{
    font-family: sans-serif;
    font-size: medium;
}

