mirror of
https://github.com/Rushilwiz/dear-anon.git
synced 2025-04-22 21:09:50 -04: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' );
|
|
} );
|