Fix reader page transition text color

Regression f95b0c8bcc
This commit is contained in:
schroda
2026-04-26 14:30:54 +02:00
parent c017306f5e
commit 89e0b0761e

View File

@@ -63,12 +63,12 @@ const ChapterInfo = ({
return (
<Stack>
<Typography color={contrastText}>{title}</Typography>
<Typography color={contrastText} variant="h6" component="h1">
<Typography sx={{ color: contrastText }}>{title}</Typography>
<Typography sx={{ color: contrastText }} variant="h6" component="h1">
{name}
</Typography>
{scanlator && (
<Typography variant="body2" color={disabledText}>
<Typography variant="body2" sx={{ color: disabledText }}>
{scanlator}
</Typography>
)}