Skip to content

Commit f4c2648

Browse files
committed
Fix vertical list background color in testnet
1 parent 251d44e commit f4c2648

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed
Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
1-
import { COLORS } from 'styles/theme/colors'
21
import { styled } from '@mui/material/styles'
32
import Box from '@mui/material/Box'
43

54
export const VerticalList = styled(Box)(({ theme }) => ({
65
display: 'flex',
76
flexDirection: 'column',
87
gap: `0 ${theme.spacing(2)}`,
9-
backgroundColor: COLORS.brandDark,
8+
backgroundColor: theme.palette.background.default,
109
}))

0 commit comments

Comments
 (0)