Skip to content

Commit

Permalink
use trail text colour for text and kicker colour for circle/bullet po…
Browse files Browse the repository at this point in the history
…int in latest links component (#12977)
  • Loading branch information
cemms1 authored Dec 10, 2024
1 parent 7c77044 commit 805bcdd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dotcom-rendering/src/components/LatestLinks.importable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ const bold = css`
width: 0.75em;
margin-right: ${space[1]}px;
display: inline-block;
background-color: currentColor;
background-color: ${themePalette('--card-kicker-text')};
border-radius: 100%;
}
`;
Expand Down Expand Up @@ -186,7 +186,7 @@ export const LatestLinks = ({
{index > 0 && (
<li
key={block.id + ' : divider'}
css={[dividerStyles]}
css={dividerStyles}
></li>
)}
<li
Expand All @@ -201,7 +201,7 @@ export const LatestLinks = ({
css={bold}
style={{
color: themePalette(
'--card-kicker-text',
'--card-trail-text',
),
}}
>
Expand Down

0 comments on commit 805bcdd

Please sign in to comment.