PluginProbe
Canvas / 2.4.9
Canvas v2.4.9
2.5.5 2.5.4 trunk 2.0.3 2.0.4 2.0.5 2.0.6 2.0.7 2.0.8 2.0.9 2.1.0 2.1.1 2.1.2 2.1.3 2.1.4 2.1.5 2.1.6 2.1.7 2.1.8 2.1.9 2.2.0 2.2.1 2.2.2 2.2.3 2.2.4 All 54 releases
canvas / components / basic-elements / block-cover / block.css

block.css in Canvas 2.4.9, at components/basic-elements/block-cover/block.css

27 lines 636 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /**
2 * All of the CSS for your block editor functionality should be
3 * included in this file.
4 */
5 /**
6 * Environment for all styles (variables, additions, etc).
7 */
8 /*--------------------------------------------------------------*/
9 /*--------------------------------------------------------------*/
10 .wp-block-cover {
11 -webkit-box-align: start;
12 -ms-flex-align: start;
13 align-items: flex-start;
14 }
15
16 .wp-block-cover.is-cnvs-vert-align-middle {
17 -webkit-box-align: center;
18 -ms-flex-align: center;
19 align-items: center;
20 }
21
22 .wp-block-cover.is-cnvs-vert-align-bottom {
23 -webkit-box-align: end;
24 -ms-flex-align: end;
25 align-items: flex-end;
26 }
27