Created
March 26, 2019 07:38
-
-
Save WordPress-Handbuch/1763c933f160f4f9723559cba5bf981d to your computer and use it in GitHub Desktop.
Example Gutenberg editor styles to be included via add_editor_style( 'listing-21-4.css' );
This file contains hidden or 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
body { | |
background-color: #00ffff; | |
color: #0000ff; | |
} | |
.wp-block { | |
max-width: 300px; | |
} | |
.wp-block[data-align="wide"] { | |
max-width: 500px; | |
} | |
.wp-block[data-align="full"] { | |
max-width: none; | |
} | |
.wp-block-image { | |
border: 5px solid #ff0000; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment