Skip to content

Commit

Permalink
Fix box sizing for pseudo elements.
Browse files Browse the repository at this point in the history
This PR tries to fix #6513.

In my testing, this has no adverse side-effects, but like the original ticket reporter suggests, we need to verify that there are no visual regressions. It would be good to test:

- metaboxes
- plugins
- all breakpoints
- browsers
- IE
  • Loading branch information
jasmussen committed Jun 26, 2018
1 parent b454f1d commit 7179576
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion edit-post/assets/stylesheets/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,9 @@ body.gutenberg-editor-page {
}

.gutenberg {
* {
*,
*:before,
*:after {
box-sizing: border-box;
}

Expand Down

0 comments on commit 7179576

Please sign in to comment.