We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 64071f7 commit 1a0a670Copy full SHA for 1a0a670
src/block/column/editor.scss
@@ -54,3 +54,19 @@
54
.wp-block-stackable-column {
55
min-width: 0;
56
}
57
+
58
+/**
59
+* Add support for native image block alignment inside inner column
60
+* using margin, since it uses display: block in the editor.
61
+*
62
+* @see https://github.com/gambitph/Stackable/issues/3610
63
+*/
64
+.wp-block-stackable-column .wp-block-image {
65
+ .components-resizable-box__container {
66
+ &,
67
+ img {
68
+ margin-left: var(--stk-alignment-margin-left, auto);
69
+ margin-right: var(--stk-alignment-margin-right, auto);
70
+ }
71
72
+}
0 commit comments