product-quantity--default.php
5 months ago
product-quantity-borderless.php
5 months ago
product-quantity-orbit.php
5 months ago
product-quantity-pebble.php
5 months ago
product-quantity--default.php
22 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Default style |
| 4 | */ |
| 5 | register_block_style( |
| 6 | 'surecart/product-quantity', |
| 7 | array( |
| 8 | 'name' => 'default', |
| 9 | 'label' => __( 'Default', 'surecart' ), |
| 10 | 'is_default' => true, |
| 11 | 'style_data' => array( |
| 12 | 'blocks' => array( |
| 13 | 'surecart/product-quantity-control' => array( |
| 14 | 'spacing' => array( |
| 15 | 'blockGap' => '1px', |
| 16 | ), |
| 17 | ), |
| 18 | ), |
| 19 | ), |
| 20 | ) |
| 21 | ); |
| 22 |