Skip to content

Commit

Permalink
[@mantine/core] TypographyStylesProvider: Add borderLeft to blockquot…
Browse files Browse the repository at this point in the history
…e to make component look the same way as Blockquote component (#3103)
  • Loading branch information
dev-rb committed Dec 4, 2022
1 parent ffc603f commit 36cfa20
Showing 1 changed file with 3 additions and 0 deletions.
Expand Up @@ -177,6 +177,9 @@ export default createStyles((theme) => {
borderBottomRightRadius: theme.radius.sm,
padding: `${theme.spacing.md}px ${theme.spacing.lg}px`,
color: theme.colorScheme === 'dark' ? theme.colors.dark[0] : theme.black,
borderLeft: `6px solid ${
theme.colorScheme === 'dark' ? theme.colors.dark[4] : theme.colors.gray[3]
}`,

'& cite': {
display: 'block',
Expand Down

0 comments on commit 36cfa20

Please sign in to comment.