From 448feedace31627f182fb59a05aa6d04aa53bc42 Mon Sep 17 00:00:00 2001 From: Athou Date: Mon, 15 Aug 2022 00:43:56 +0200 Subject: [PATCH] style entries content with mantine styles --- commafeed-client/src/components/content/Content.tsx | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/commafeed-client/src/components/content/Content.tsx b/commafeed-client/src/components/content/Content.tsx index 80080cb9..82aff853 100644 --- a/commafeed-client/src/components/content/Content.tsx +++ b/commafeed-client/src/components/content/Content.tsx @@ -1,4 +1,4 @@ -import { createStyles, Text } from "@mantine/core" +import { createStyles, Text, TypographyStylesProvider } from "@mantine/core" export interface ContentProps { content: string @@ -26,5 +26,9 @@ const useStyles = createStyles(theme => ({ export function Content(props: ContentProps) { const { classes } = useStyles() - return + return ( + + + + ) }