Skip to content

Commit

Permalink
Provide a return value if byline size is tiny
Browse files Browse the repository at this point in the history
  • Loading branch information
Georges-GNM committed Oct 10, 2024
1 parent 3f23caf commit 6b09494
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion dotcom-rendering/src/components/Byline.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,9 @@ const bylineStyles = (size: SmallHeadlineSize, isLabs: boolean) => {
`;
}
case 'tiny':
return undefined;
return css`
${headlineMediumItalic17};
`;
}
};

Expand Down

0 comments on commit 6b09494

Please sign in to comment.