Skip to content

Commit

Permalink
Fix highlight in light mode
Browse files Browse the repository at this point in the history
  • Loading branch information
itayox committed Jul 24, 2023
1 parent f551c5b commit 1384960
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion packages/app/src/analysis/components/FileUploadForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,11 @@ const useStyles = makeStyles()((theme: Theme) => ({
theme.palette.mode === "dark"
? alpha(theme.palette.background.paper, 0.2)
: darken(theme.palette.background.paper, 0.05),
outline: `2px dashed ${darken(theme.palette.divider, 0.3)}`,
outline: "2px dashed",
outlineColor:
theme.palette.mode === "dark"
? darken(theme.palette.divider, 0.3)
: darken(theme.palette.divider, 0.3),
},
},
uploading: {
Expand Down

0 comments on commit 1384960

Please sign in to comment.