| 1 |
/** |
| 2 |
* All of the CSS for your block editor functionality should be |
| 3 |
* included in this file. |
| 4 |
*/ |
| 5 |
/*--------------------------------------------------------------*/ |
| 6 |
/** |
| 7 |
* All of the CSS for your block editor functionality should be |
| 8 |
* included in this file. |
| 9 |
*/ |
| 10 |
/** |
| 11 |
* Environment for all styles (variables, additions, etc). |
| 12 |
*/ |
| 13 |
/*--------------------------------------------------------------*/ |
| 14 |
/*--------------------------------------------------------------*/ |
| 15 |
.wp-block-cover { |
| 16 |
-webkit-box-align: start; |
| 17 |
-ms-flex-align: start; |
| 18 |
align-items: flex-start; |
| 19 |
} |
| 20 |
|
| 21 |
.wp-block-cover.is-cnvs-vert-align-middle { |
| 22 |
-webkit-box-align: center; |
| 23 |
-ms-flex-align: center; |
| 24 |
align-items: center; |
| 25 |
} |
| 26 |
|
| 27 |
.wp-block-cover.is-cnvs-vert-align-bottom { |
| 28 |
-webkit-box-align: end; |
| 29 |
-ms-flex-align: end; |
| 30 |
align-items: flex-end; |
| 31 |
} |
| 32 |
|