Skip to content

Commit b2ab1f5

Browse files
authored
Merge pull request #1041 from vr-varad/fix/carousal_fix
Fix: Performace carousal Width
2 parents d61c4f8 + 1839655 commit b2ab1f5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/custom/Carousel/style.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ export const CarouselButton = styled('button')(({ theme }) => ({
66
transform: 'translateY(-50%)',
77
zIndex: '1',
88
background: theme.palette.background.paper,
9+
color: theme.palette.mode === 'dark' ? theme.palette.common.white : theme.palette.common.black,
910
border: 'none',
1011
cursor: 'pointer',
1112
padding: '0.5rem',

src/custom/PerformersSection/styles.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,7 @@ export const Title = styled(Typography)(({ theme }) => ({
9090
}));
9191

9292
export const StyledCard = styled(Card)<StyledCardProps>(({ theme }) => ({
93-
width: 'inherit',
94-
minWidth: '150px',
93+
width: '200px',
9594
borderRadius: '16px',
9695
position: 'relative',
9796
overflow: 'hidden',

0 commit comments

Comments
 (0)