Skip to content

Commit

Permalink
style: fix border-color on dark theme
Browse files Browse the repository at this point in the history
  • Loading branch information
dennyscode committed Jan 17, 2025
1 parent a610918 commit ef70b90
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export const WidgetLikeInput = styled(Input)(({ theme }) => ({
borderRadius: theme.spacing(2),
padding: '16px',
backgroundColor: theme.palette.surface2.main,
border: `1px solid #E5E1EB`,
border: `1px solid ${theme.palette.mode === 'light' ? '#E5E1EB' : '#302B52'}`,
'& input': {
fontSize: '24px',
fontWeight: 700,
Expand Down

0 comments on commit ef70b90

Please sign in to comment.