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,
|
||||
size: 'medium',
|
||||
},
|
||||
{
|
||||
cols: 3,
|
||||
size: 'small',
|
||||
},
|
||||
{
|
||||
cols: 5,
|
||||
size: 'medium',
|
||||
},
|
||||
]}
|
||||
breakpoints={[
|
||||
{
|
||||
|
|
|
@ -97,6 +97,14 @@ export const PodcastShowsPreview: React.FC<PodcastShowsPreviewProps> = ({
|
|||
breakpoint: 'xs',
|
||||
pattern: [{ cols: 1, size: 'small' }],
|
||||
},
|
||||
{
|
||||
breakpoint: 'sm',
|
||||
pattern: [{ cols: 2, size: 'small' }],
|
||||
},
|
||||
{
|
||||
breakpoint: 'md',
|
||||
pattern: [{ cols: 2, size: 'small' }],
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
@ -183,7 +191,7 @@ const Root = styled('div')`
|
|||
}
|
||||
|
||||
${(props) =>
|
||||
lsdUtils.breakpoint(
|
||||
lsdUtils.responsive(
|
||||
props.theme,
|
||||
'xs',
|
||||
'exact',
|
||||
|
|
Loading…
Reference in New Issue