diff options
| author | Armand Philippot <git@armandphilippot.com> | 2022-05-13 15:39:55 +0200 |
|---|---|---|
| committer | Armand Philippot <git@armandphilippot.com> | 2022-05-13 15:46:05 +0200 |
| commit | dab72bb270ee2ee47a0b472d5e9e240cba7cbf0f (patch) | |
| tree | a64a49a1048eeab1204a9b04923135edd1f259e1 /src/components/organisms/layout/summary.tsx | |
| parent | c5b516e2c933e77b2550fe6becebacb3fbdd30eb (diff) | |
chore: handle blog pagination
Diffstat (limited to 'src/components/organisms/layout/summary.tsx')
| -rw-r--r-- | src/components/organisms/layout/summary.tsx | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/src/components/organisms/layout/summary.tsx b/src/components/organisms/layout/summary.tsx index 1c4a38b..078f9ee 100644 --- a/src/components/organisms/layout/summary.tsx +++ b/src/components/organisms/layout/summary.tsx @@ -141,12 +141,19 @@ const Summary: FC<SummaryProps> = ({ <ButtonLink target={url} className={styles['read-more']}> <> {readMore} - <Arrow direction="right" /> + <Arrow direction="right" className={styles.icon} /> </> </ButtonLink> </div> <footer className={styles.footer}> - <Meta data={getMeta(meta)} layout="column" className={styles.meta} /> + <Meta + data={getMeta(meta)} + layout="column" + itemsLayout="stacked" + withSeparator={false} + className={styles.meta} + groupClassName={styles.meta__item} + /> </footer> </article> ); |
