Skip to content

Commit cee1ef5

Browse files
authored
Merge pull request #58 from RonasIT/PRD-2435-fix-text-formatting-style
feat: fix formatted text styles
2 parents 7bf93fe + f9e8541 commit cee1ef5

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

libs/mobile/chat/features/source-citation-modal/src/lib/utils/get-relevance-color.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ export const getRelevanceColor = (percentage: number): string => {
33
if (percentage >= 60) return 'bg-status-warning-light text-status-warning';
44
if (percentage >= 40) return 'bg-status-warning-orange-light text-status-warning-orange';
55

6-
return 'bg-status-error-light text-status-error';
6+
return 'bg-status-danger-light text-status-danger';
77
};

libs/mobile/shared/features/markdown-view/src/lib/component.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -302,4 +302,7 @@ const markdownStyles = createStyles({
302302
backgroundColor: colorScheme.get() === 'dark' ? colors.gray700 : colors.gray75,
303303
textDecorationLine: 'none',
304304
},
305+
blockquote: {
306+
backgroundColor: colorScheme.get() === 'dark' ? colors.gray700 : colors.gray75,
307+
},
305308
});

0 commit comments

Comments
 (0)