File tree Expand file tree Collapse file tree 1 file changed +18
-7
lines changed
dotcom-rendering/src/components Expand file tree Collapse file tree 1 file changed +18
-7
lines changed Original file line number Diff line number Diff line change @@ -201,6 +201,23 @@ const stretchLines = css`
201
201
grid-column : 1 / -1 ;
202
202
` ;
203
203
204
+ const galleryMetaContainer = css `
205
+ ${ grid . column . centre }
206
+ padding-bottom : ${ space [ 2 ] } px;
207
+ ${ from . tablet } {
208
+ position : relative;
209
+ & ::before {
210
+ content : '' ;
211
+ position : absolute;
212
+ left : -10px ;
213
+ top : 0 ;
214
+ bottom : 0 ;
215
+ width : 1px ;
216
+ background-color : ${ themePalette ( '--article-border' ) } ;
217
+ }
218
+ }
219
+ ` ;
220
+
204
221
export const ArticleMetaApps = ( {
205
222
branding,
206
223
format,
@@ -244,13 +261,7 @@ export const ArticleMetaApps = ({
244
261
}
245
262
css = { [
246
263
metaContainerMargins ,
247
- isGallery ? grid . column . centre : undefined ,
248
- isGallery
249
- ? {
250
- marginLeft : space [ 3 ] ,
251
- paddingBottom : space [ 2 ] ,
252
- }
253
- : undefined ,
264
+ isGallery ? galleryMetaContainer : undefined ,
254
265
] }
255
266
>
256
267
< div
You can’t perform that action at this time.
0 commit comments