A usable slider block
The slider block disappears
Screenshots




I'm using WP 5.3.2 with the Twenty Twenty theme and Jetpack 8.1.1
Tried this with the latest Firefox (72) and Chrome (79) with equal results.
If I add width: 100% to the .wp-block-column.is-vertically-aligned-top, .wp-block-column.is-vertically-aligned-center and .wp-block-column.is-vertically-aligned-bottom CSS rules in Gutenberg, the slider block works as expected:
.wp-block-column.is-vertically-aligned-center {
align-self: center;
width: 100%; /* new */
}
Maybe this is a fix for Gutenberg itself, not Jetpack.
Maybe this is a fix for Gutenberg itself, not Jetpack.
Since it happens on WP 5.3.2, even when the Gutenberg plugin is not active, we will most likely need to come up with a patch until the problem is fixed in Gutenberg and then WordPress Core.
Most helpful comment
If I add
width: 100%to the.wp-block-column.is-vertically-aligned-top,.wp-block-column.is-vertically-aligned-centerand.wp-block-column.is-vertically-aligned-bottomCSS rules in Gutenberg, the slider block works as expected:Maybe this is a fix for Gutenberg itself, not Jetpack.