Thanks to visit codestin.com
Credit goes to github.com

Skip to content
This repository was archived by the owner on May 20, 2025. It is now read-only.

Mitra/Improve responsive UI for platform carousel on mobile #2594

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/pages/home/_our_platforms.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ const OurPlatforms = () => {
<SectionContainer
background="#f9fbff"
height="fit-content"
tabletL={{ height: 'fit-content', min_height: '663px', pb: 'unset' }}
tabletL={{ height: 'fit-content', pb: 'unset' }}
padding="8rem 0 0 0"
>
<Flex fd="column" tabletL={{ width: '90%' }}>
<Flex fd="column" ai="center" jc="center" mb="8rem" tabletL={{ mb: '24px' }}>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ const MobilePlatformCarousel = () => {
return (
<CarouselItemWrapper key={platform.description}>
<Flex tabletL={{ mb: '56px' }}>
<MobileImage data={images[image_key]} alt={image_key} />
<MobileImage data={images[image_key]} alt={image_key} height={'55vw'} />
</Flex>
<Flex>
<PlatformDetails
Expand Down