Skip to content

Commit

Permalink
fix(drawer): redundant Divider in mobile devices
Browse files Browse the repository at this point in the history
  • Loading branch information
memset0 committed Nov 3, 2023
1 parent ccd2a86 commit d5a71b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Layout/DrawerContent.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ const DrawerContent = () => {
<img height="52" src="/logo.svg" loading="eager" alt="" />
</Link>
</Toolbar>
<Divider />
<Divider sx={{ opacity: { xs: 0, md: 1 } }} />
<List component="nav">
{navigators.map(navigator => (
<ListItem disablePadding>
Expand Down

0 comments on commit d5a71b9

Please sign in to comment.