We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent da1fe41 commit 86a7138Copy full SHA for 86a7138
2 files changed
src/custom/Carousel/style.tsx
@@ -6,6 +6,7 @@ export const CarouselButton = styled('button')(({ theme }) => ({
6
transform: 'translateY(-50%)',
7
zIndex: '1',
8
background: theme.palette.background.paper,
9
+ color: theme.palette.mode === 'dark' ? theme.palette.common.white : theme.palette.common.black,
10
border: 'none',
11
cursor: 'pointer',
12
padding: '0.5rem',
src/custom/PerformersSection/styles.tsx
@@ -90,7 +90,7 @@ export const Title = styled(Typography)(({ theme }) => ({
90
}));
91
92
export const StyledCard = styled(Card)<StyledCardProps>(({ theme }) => ({
93
- width: '150px',
+ width: '200px',
94
borderRadius: '16px',
95
position: 'relative',
96
overflow: 'hidden',
0 commit comments