PluginProbe ʕ •ᴥ•ʔ
FrontBlocks for Gutenberg/GeneratePress / trunk
FrontBlocks for Gutenberg/GeneratePress vtrunk
trunk 0.2.0 0.2.1 0.2.2 0.2.3 0.2.4 0.2.5 1.0.0 1.0.1 1.0.2 1.0.3 1.0.4 1.1.0 1.2.0 1.2.1 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 ci-artifacts
frontblocks / assets / columns-same-height / frontblocks-columns-same-height.css
frontblocks / assets / columns-same-height Last commit date
frontblocks-columns-same-height-option.js 2 weeks ago frontblocks-columns-same-height-option.jsx 2 weeks ago frontblocks-columns-same-height.css 2 weeks ago
frontblocks-columns-same-height.css
18 lines
1 /* Frontend: class on .wp-block-columns */
2 .frbl-columns-same-height,
3 /* Editor: data attribute on the outer block wrapper */
4 [data-frbl-same-height="true"] .wp-block-columns {
5 align-items: stretch;
6 }
7
8 .frbl-columns-same-height > .wp-block-column,
9 [data-frbl-same-height="true"] .wp-block-columns > .wp-block-column {
10 display: flex;
11 flex-direction: column;
12 }
13
14 .frbl-columns-same-height > .wp-block-column > *,
15 [data-frbl-same-height="true"] .wp-block-columns > .wp-block-column > * {
16 flex-grow: 1;
17 }
18