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 fe8f5c3 commit 819e441Copy full SHA for 819e441
2 files changed
src/styles/block.scss
@@ -173,6 +173,12 @@
173
> *:last-child {
174
margin-bottom: 0;
175
}
176
+
177
+ // Separators inside .stk-inner-blocks become flex items. Explicitly setting width to 100%
178
+ // restores the expected full-width separator behavior.
179
+ .wp-block-separator {
180
+ width: 100%;
181
+ }
182
183
// Column with a block background has a padding that might not be obvious.
184
.stk-block-background {
src/styles/editor-block.scss
@@ -326,3 +326,8 @@
326
justify-content: var(--stk-alignment-justify-content);
327
328
329
+// Separators inside .stk-inner-blocks become flex items. Explicitly setting width to 100%
330
+// restores the expected full-width separator behavior.
331
+.stk-inner-blocks .wp-block-separator {
332
333
+}
0 commit comments