Created
November 13, 2018 00:27
-
-
Save wplit/871f89ca0051b3b2a52cfe3210603ca5 to your computer and use it in GitHub Desktop.
Change Gutenberg editor width
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Main column width */ | |
.wp-block { | |
max-width: 900px; | |
} | |
/* Width of "wide" blocks */ | |
.wp-block[data-align="wide"] { | |
max-width: 1100px; | |
} | |
/* Width of "full-wide" blocks */ | |
.wp-block[data-align="full"] { | |
max-width: none; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment