Skip to content

Commit 095e662

Browse files
authored
Merge pull request #14625 from guardian/gallery-app-key-line
Remove keyline above date on gallery app
2 parents 7fd5b7c + c7163c7 commit 095e662

File tree

1 file changed

+16
-14
lines changed

1 file changed

+16
-14
lines changed

dotcom-rendering/src/components/ArticleMeta.apps.tsx

Lines changed: 16 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -336,20 +336,22 @@ export const ArticleMetaApps = ({
336336
</Island>
337337
</MetaGridCommentCount>
338338
)}
339-
<StraightLines
340-
cssOverrides={[
341-
stretchLines,
342-
css`
343-
grid-row: 4 / -4;
344-
`,
345-
]}
346-
count={1}
347-
color={
348-
isLiveBlog
349-
? 'rgba(255, 255, 255, 0.4)'
350-
: themePalette('--article-meta-lines')
351-
}
352-
/>
339+
{format.design !== ArticleDesign.Gallery && (
340+
<StraightLines
341+
cssOverrides={[
342+
stretchLines,
343+
css`
344+
grid-row: 4 / -4;
345+
`,
346+
]}
347+
count={1}
348+
color={
349+
isLiveBlog
350+
? 'rgba(255, 255, 255, 0.4)'
351+
: themePalette('--article-meta-lines')
352+
}
353+
/>
354+
)}
353355
<MetaGridDateline
354356
isImmersiveOrAnalysisWithMultipleAuthors={
355357
isImmersiveOrAnalysisWithMultipleAuthors

0 commit comments

Comments
 (0)