Skip to content

Commit

Permalink
Merge pull request #8975 from marmelab/demo-tag-list-mobile
Browse files Browse the repository at this point in the history
[Demo] Fix tag list on Mobile
  • Loading branch information
slax57 authored Jun 5, 2023
2 parents 312867b + b54f1fd commit 0b13432
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions examples/simple/src/tags/TagList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,21 @@ import {
ListItemSecondaryAction,
Collapse,
Card,
Stack,
} from '@mui/material';
import ExpandLess from '@mui/icons-material/ExpandLess';
import ExpandMore from '@mui/icons-material/ExpandMore';

const TagList = () => (
<ListBase perPage={1000}>
<ListActions />
<Box maxWidth="20em" marginTop="1em">
<Card>
<Tree />
</Card>
</Box>
<Stack>
<ListActions />
<Box maxWidth="20em" marginTop="1em">
<Card>
<Tree />
</Card>
</Box>
</Stack>
</ListBase>
);

Expand Down

0 comments on commit 0b13432

Please sign in to comment.