mirror of
https://github.com/felixfoertsch/wordpress-dev-env.git
synced 2026-04-18 07:18:43 +02:00
10 lines
178 B
JavaScript
10 lines
178 B
JavaScript
/**
|
|
* Remove squared button style
|
|
*
|
|
* @since Twenty Twenty 1.0
|
|
*/
|
|
/* global wp */
|
|
wp.domReady( function() {
|
|
wp.blocks.unregisterBlockStyle( 'core/button', 'squared' );
|
|
} );
|