Skip to content

Commit

Permalink
fix: remove css override of white background on darkmode (#815)
Browse files Browse the repository at this point in the history
  • Loading branch information
YuvalMasada authored Jun 19, 2024
1 parent 59da665 commit 9813128
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/pages/dashboard/DashboardPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ const DashboardPage = () => {
{t('dashboard_page_description')}
</Alert>
{startDate > endDate ? (
<Alert severity="error" variant="outlined" sx={{ bgcolor: '#feeaea' }}>
<Alert severity="error" variant="outlined">
{t('bug_date_alert')}
</Alert>
) : null}
Expand Down
2 changes: 1 addition & 1 deletion src/pages/gapsPatterns/GapsPatternsPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ const GapsPatternsPage = () => {
</Alert>
</Space>
{startDate > endDate ? (
<Alert severity="error" variant="outlined" sx={{ bgcolor: '#feeaea' }}>
<Alert severity="error" variant="outlined">
{t('bug_date_alert')}
</Alert>
) : null}
Expand Down

0 comments on commit 9813128

Please sign in to comment.