Skip to content

Commit a946ff7

Browse files
authored
fixed dots overlap on section (#2028)
1 parent 3abfd68 commit a946ff7

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

src/components/client/index/sections/CompletedCampaignsSection/CompletedCampaignsSection.styled.tsx

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,12 @@ export const CarouselWrapper = styled(Slider)(() => ({
1616
maxWidth: theme.spacing(162),
1717

1818
'.slick-list': {
19-
paddingBottom: theme.spacing(3),
19+
paddingBottom: theme.spacing(7),
20+
},
21+
22+
'.slick-dots': {
23+
position: 'relative',
24+
bottom: 'auto',
2025
},
2126

2227
'.slick-dots li button::before': {

src/components/client/index/sections/PlatformStatisticsSection/PlatformStatisticsSection.styled.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import LinkButton from 'components/common/LinkButton'
66

77
export const Root = styled('section')(() => ({
88
backgroundColor: theme.palette.secondary.light,
9-
marginTop: theme.spacing(14),
9+
marginTop: theme.spacing(10),
1010

1111
[theme.breakpoints.up('md')]: {
1212
padding: theme.spacing(0),

0 commit comments

Comments
 (0)