File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ const Modal: FC<ModalProps> = ({
45
45
initial = { { opacity : 0 , y : "-40%" } }
46
46
animate = { { opacity : 1 , y : "0%" } }
47
47
exit = { { opacity : 0 , y : "40%" } }
48
- className = "w-[90vw] flex flex-col h-fit max-w-2xl rounded-xl bg-white dark:bg-black border border-black/10 dark:border-white/25 p-10 shadow-xl dark:shadow-primary/50 focus:outline-none cursor-auto"
48
+ className = "w-[90vw] my-auto flex flex-col h-fit max-w-2xl rounded-xl bg-white dark:bg-black border border-black/10 dark:border-white/25 p-10 shadow-xl dark:shadow-primary/50 focus:outline-none cursor-auto"
49
49
>
50
50
< Dialog . Title className = "m-0 text-2xl font-bold" >
51
51
{ title }
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ const DocumentData = ({ documentName }: DocumentDataProps): JSX.Element => {
31
31
} , [ axiosInstance , documentName ] ) ;
32
32
33
33
return (
34
- < div className = "prose" >
34
+ < div className = "prose dark:prose-invert " >
35
35
< h1 className = "text-bold text-3xl break-words" > { documentName } </ h1 >
36
36
< p > No. of chunks: { documents . length } </ p >
37
37
You can’t perform that action at this time.
0 commit comments