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 ef45da5 commit d8cab82Copy full SHA for d8cab82
src/block/columns/style.scss
@@ -15,6 +15,14 @@
15
margin-right: auto;
16
}
17
18
+// Add a 0 specificity style to set the default column order. This is to prevent
19
+// the column order from spilling to nested blocks.
20
+:where(.stk-block-columns) {
21
+ @for $i from 1 through 20 {
22
+ --stk-col-order-#{ $i }: #{ $i };
23
+ }
24
+}
25
+
26
// Column order.
27
@for $i from 1 through 20 {
28
.stk-block-column:nth-child(#{ $i }) {
0 commit comments