fix: landing page grid settings
This commit is contained in:
parent
c409b2e643
commit
c3db5e6873
|
@ -53,14 +53,6 @@ export const HomePage: React.FC<HomePageProps> = ({
|
||||||
cols: 2,
|
cols: 2,
|
||||||
size: 'medium',
|
size: 'medium',
|
||||||
},
|
},
|
||||||
{
|
|
||||||
cols: 3,
|
|
||||||
size: 'small',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
cols: 5,
|
|
||||||
size: 'medium',
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
breakpoints={[
|
breakpoints={[
|
||||||
{
|
{
|
||||||
|
|
|
@ -97,6 +97,14 @@ export const PodcastShowsPreview: React.FC<PodcastShowsPreviewProps> = ({
|
||||||
breakpoint: 'xs',
|
breakpoint: 'xs',
|
||||||
pattern: [{ cols: 1, size: 'small' }],
|
pattern: [{ cols: 1, size: 'small' }],
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
breakpoint: 'sm',
|
||||||
|
pattern: [{ cols: 2, size: 'small' }],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
breakpoint: 'md',
|
||||||
|
pattern: [{ cols: 2, size: 'small' }],
|
||||||
|
},
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
@ -183,7 +191,7 @@ const Root = styled('div')`
|
||||||
}
|
}
|
||||||
|
|
||||||
${(props) =>
|
${(props) =>
|
||||||
lsdUtils.breakpoint(
|
lsdUtils.responsive(
|
||||||
props.theme,
|
props.theme,
|
||||||
'xs',
|
'xs',
|
||||||
'exact',
|
'exact',
|
||||||
|
|
Loading…
Reference in New Issue