diff --git a/web/src/features/notifications/NotificationWrapper.tsx b/web/src/features/notifications/NotificationWrapper.tsx index 6c74e2a..1ab7358 100644 --- a/web/src/features/notifications/NotificationWrapper.tsx +++ b/web/src/features/notifications/NotificationWrapper.tsx @@ -47,6 +47,11 @@ const useStyles = createStyles((theme) => ({ color: theme.colors.dark[2], fontFamily: 'Roboto', }, + descriptionOnly: { + fontSize: 14, + color: theme.colors.dark[2], + fontFamily: 'Roboto', + }, })); // I hate this @@ -174,7 +179,11 @@ const Notifications: React.FC = () => { )} {data.title && {data.title}} - {data.description && {data.description}} + {data.description && ( + + {data.description} + + )}