Skip to content

Commit 26e3981

Browse files
committed
Fix main chart axis color
1 parent 929c8e7 commit 26e3981

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/pages/dashboard/Dashboard.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -355,14 +355,14 @@ const Dashboard = ({ classes, theme, ...props }) => {
355355
>
356356
<YAxis
357357
ticks={[0, 2500, 5000, 7500]}
358-
tick={{ fill: theme.palette.text.hint, fontSize: 14 }}
359-
stroke={theme.palette.text.hint}
358+
tick={{ fill: theme.palette.text.hint + '80', fontSize: 14 }}
359+
stroke={theme.palette.text.hint + '80'}
360360
tickLine={false}
361361
/>
362362
<XAxis
363363
tickFormatter={i => i + 1}
364-
tick={{ fill: theme.palette.text.hint, fontSize: 14 }}
365-
stroke={theme.palette.text.hint}
364+
tick={{ fill: theme.palette.text.hint + '80', fontSize: 14 }}
365+
stroke={theme.palette.text.hint + '80'}
366366
tickLine={false}
367367
/>
368368
<Area

0 commit comments

Comments
 (0)