Skip to content

Commit

Permalink
Merge pull request #134 from EnigmaVSSUT/dev-v2
Browse files Browse the repository at this point in the history
fix: minor updates
  • Loading branch information
SySagar authored Mar 3, 2024
2 parents 79c11f3 + d57dfd7 commit 1a74e44
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 10 deletions.
7 changes: 4 additions & 3 deletions src/app/home/components/Services.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ const Services = () => {
minHeight='100vh'
padding='64px 32px'
alignItems='center'
overflow={'hidden'}
>
<Typography
variant='displayLarge'
Expand All @@ -73,8 +74,8 @@ const Services = () => {
</Typography>
{
isTablet? (
<Stack gap={3} paddingTop={7} width={'100vw'}>
<Stack className="slide-container" direction={'row'} gap={3}>
<Stack gap={3} paddingTop={7} width={'100vw'} overflow={'hidden'}>
<Stack className={styles.slideContainer} direction={'row'} gap={3} overflow={'hidden'}>

<Stack className={styles.leftSlider} gap={3} direction={'row'} ref={servicesContainerRef}>
{
Expand Down Expand Up @@ -103,7 +104,7 @@ const Services = () => {

</Stack>

<Stack className="slide-container" direction={'row'} gap={3}>
<Stack className={styles.slideContainer} direction={'row'} gap={3} overflow={'hidden'}>

<Stack className={styles.rightSlider} justifyContent={'center'} alignItems={'center'} gap={3} direction={'row'} ref={servicesContainerRef}>
{
Expand Down
8 changes: 1 addition & 7 deletions src/app/home/components/service.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,7 @@
}
}

.slide-container{
padding: 60px 0 0;
.slideContainer{
overflow: hidden!important;

white-space: nowrap;
}

.cards{

}

0 comments on commit 1a74e44

Please sign in to comment.