Created
September 29, 2025 18:07
-
-
Save askwpgirl/8ca3f1f67795579cfa567f1d42617030 to your computer and use it in GitHub Desktop.
Gutenberg Editor Button Style
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
| /* Block Editor button styling */ | |
| a.wp-block-button__link:not(.has-background) { | |
| color: #000 !important; | |
| background-color: #93D500; | |
| font-weight: bold; | |
| text-transform: uppercase; | |
| letter-spacing: 1px; | |
| } | |
| a.wp-block-button__link:not(.has-background):hover { | |
| color: #000 !important; | |
| background-color: #00BED6; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment