Last active
June 4, 2019 18:18
-
-
Save hwkdev/66723259f354b79e33d118cb1656c4c2 to your computer and use it in GitHub Desktop.
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
/* | |
* Gutenberg: Fix metaboxes | |
*/ | |
.edit-post-layout__metaboxes:not(:empty) .edit-post-meta-boxes-area{ | |
margin:10px 10px 0; | |
} | |
.edit-post-layout__metaboxes:not(:empty) { | |
background:#f3f4f5; | |
} | |
.edit-post-layout__metaboxes .edit-post-meta-boxes-area .postbox{ | |
margin-bottom:10px; | |
} | |
/* Firefox fix box-shadow */ | |
@supports (-moz-appearance:meterbar){ | |
.edit-post-layout__metaboxes .postbox{ | |
box-shadow:0 1px 1px 1px rgba(0,0,0,.04); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment