Skip to content

Commit

Permalink
Fix overflow issue in Demo element
Browse files Browse the repository at this point in the history
  • Loading branch information
TheZoker committed Apr 16, 2024
1 parent 64cd763 commit 10e8b48
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/common/Demo.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,8 @@ const TabsContainer = styled(Tabs)({
const DemoTab = styled(TabItem)({
borderRadius: 'var(--ifm-pre-border-radius)',
padding: '16px',
border: '1px solid #eee'
border: '1px solid #eee',
overflowX: 'auto',
});

const Code = (props) => {
Expand Down

0 comments on commit 10e8b48

Please sign in to comment.