File tree Expand file tree Collapse file tree 1 file changed +20
-4
lines changed Expand file tree Collapse file tree 1 file changed +20
-4
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,8 @@ main > *,
24
24
.footer-content ,
25
25
.main-content ,
26
26
.grid-content ,
27
- .article-content {
27
+ .article-content ,
28
+ .column-content {
28
29
display : grid ;
29
30
}
30
31
@@ -48,7 +49,8 @@ main > *,
48
49
49
50
.main-content ,
50
51
.article-content ,
51
- .grid-content {
52
+ .grid-content ,
53
+ .column-content {
52
54
grid-gap : var (--grid-gutter );
53
55
grid-template-columns : repeat (var (--grid-columns ), [col-start] 1fr );
54
56
grid-template-rows : minmax (calc (var (--leading ) * 1em ), max-content );
@@ -58,7 +60,8 @@ main > *,
58
60
.section-content ,
59
61
.article-content ,
60
62
.grid-content ,
61
- .grid-row-mid {
63
+ .grid-row-mid ,
64
+ .column-content {
62
65
grid-auto-flow : row ;
63
66
row-gap : var (--space-m );
64
67
}
@@ -84,14 +87,19 @@ main > *,
84
87
85
88
.main-content > * ,
86
89
.article-content > * ,
87
- .grid-content > * {
90
+ .grid-content > * ,
91
+ .column-content > * {
88
92
grid-column : col- start 1 / span var (--grid-columns );
89
93
}
90
94
91
95
.row-gap-m {
92
96
row-gap : var (--space-m );
93
97
}
94
98
99
+ .row-gap-none {
100
+ row-gap : 0 ;
101
+ }
102
+
95
103
.col-gap-m {
96
104
column-gap : var (--space-m );
97
105
}
@@ -123,6 +131,14 @@ main > *,
123
131
}
124
132
}
125
133
134
+ .column-content > .sidebar {
135
+ grid-column : col- start 1 / span 3 ;
136
+ }
137
+
138
+ .column-content > .mainbar {
139
+ grid-column : col- start 4 / span 9 ;
140
+ }
141
+
126
142
// For making blocks span the full width of the article
127
143
.article-content > .stretch {
128
144
grid-column : col- start / span var (--grid-columns );
You can’t perform that action at this time.
0 commit comments