I want to be able to scroll horizontally on mobile and not change the view to a column layout
How can I do that

`const CustomSeed = ({ seed, breakpoint, roundIndex, seedIndex }) => (
{seed.teams[0]?.name || 'NO TEAM '}
{seed.teams[1]?.name || 'NO TEAM '}
);
const Component = () => (
<Bracket
rounds={rounds}
roundTitleComponent={(title) => (
{title}
)}
renderSeedComponent={CustomSeed}
swipeableProps={{
enableMouseEvents: true,
animateHeight: true,
style: {
padding: '0 50px 0 0',
},
}}
/>
);`