Skip to content

Commit 92d8410

Browse files
committed
Match blog & docs UL/OL text sizing to paragraphs
1 parent 135bec9 commit 92d8410

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/components/sections/rich-text/components/default.styles.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,14 +43,16 @@ export const StyledUL = styled.ul`
4343
padding-left: 30px;
4444
margin-bottom: 2rem;
4545
color: ${({ theme }) => theme.colors.text.darkGrey};
46+
font-size: ${({ theme }) => theme.fontSizes.text.m};
4647
`;
4748

4849
export const StyledOL = styled.ol`
4950
list-style: decimal;
5051
padding-left: 30px;
5152
margin-bottom: 2rem;
5253
color: ${({ theme }) => theme.colors.text.darkGrey};
53-
`;
54+
font-size: ${({ theme }) => theme.fontSizes.text.m};
55+
}`;
5456

5557
export const StyledImage = styled(Image)`
5658
&&& {

0 commit comments

Comments
 (0)