From 93c92fcf7ceb76b847aa86ea8eb4c5b3b117a4a8 Mon Sep 17 00:00:00 2001 From: Ioanna Kokkini Date: Mon, 22 Sep 2025 14:25:46 +0100 Subject: [PATCH] Make gallery caption 14px To be the same as main media caption --- dotcom-rendering/src/components/GalleryCaption.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dotcom-rendering/src/components/GalleryCaption.tsx b/dotcom-rendering/src/components/GalleryCaption.tsx index f9e8d3da7a2..001c0309027 100644 --- a/dotcom-rendering/src/components/GalleryCaption.tsx +++ b/dotcom-rendering/src/components/GalleryCaption.tsx @@ -1,5 +1,5 @@ import { css } from '@emotion/react'; -import { between, from, space, textSans12 } from '@guardian/source/foundations'; +import { between, from, space, textSans14 } from '@guardian/source/foundations'; import { grid } from '../grid'; import { type ArticleFormat } from '../lib/articleFormat'; import { palette } from '../palette'; @@ -19,7 +19,7 @@ type Props = { const styles = css` ${grid.column.centre} color: ${palette('--caption-text')}; - ${textSans12} + ${textSans14} padding-bottom: ${space[6]}px; padding-top: ${space[5]}px;