fix: landing page grid settings

This commit is contained in:
Hossein Mehrabi 2023-08-24 19:57:01 +03:30
parent c409b2e643
commit c3db5e6873
No known key found for this signature in database
GPG Key ID: 45C04964191AFAA1
2 changed files with 9 additions and 9 deletions

View File

@ -53,14 +53,6 @@ export const HomePage: React.FC<HomePageProps> = ({
cols: 2,
size: 'medium',
},
{
cols: 3,
size: 'small',
},
{
cols: 5,
size: 'medium',
},
]}
breakpoints={[
{

View File

@ -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',