AttributesData.php in YayMail – WooCommerce Email Customizer 4.3.2, at src/Constants/AttributesData.php
| 1 | <?php |
| 2 | namespace YayMail\Constants; |
| 3 | |
| 4 | /** |
| 5 | * Attributes Data |
| 6 | */ |
| 7 | class AttributesData { |
| 8 | const TITLE_SIZE_OPTIONS = [ |
| 9 | 'default' => 26, |
| 10 | 'small' => 15, |
| 11 | 'medium' => 19, |
| 12 | 'large' => 29, |
| 13 | 'xl' => 39, |
| 14 | 'xxl' => 59, |
| 15 | ]; |
| 16 | |
| 17 | const BORDER_DEFAULT = [ |
| 18 | 'side' => 'none', |
| 19 | 'width' => '1', |
| 20 | 'style' => 'solid', |
| 21 | 'color' => YAYMAIL_COLOR_BORDER_DEFAULT, |
| 22 | 'custom' => [ |
| 23 | 'top' => '1', |
| 24 | 'right' => '1', |
| 25 | 'bottom' => '1', |
| 26 | 'left' => '1', |
| 27 | ], |
| 28 | ]; |
| 29 | } |
| 30 |