File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
import { ListItemProps } from '@mui/material' ;
2
2
import { Box , IconButton , ListItem } from '../../base' ;
3
3
import { PanelDragHandleIcon } from '../../icons/PanelDragHandle' ;
4
- import { styled } from '../../theme' ;
4
+ import { accentGrey , black , styled } from '../../theme' ;
5
5
import { PanelProps } from './Panel' ;
6
6
7
7
export const ListHeader = styled ( ListItem ) ( ( { theme } ) => ( {
@@ -68,7 +68,7 @@ export const DrawerHeader = styled('div')(({ theme }) => ({
68
68
69
69
export const PanelBody = styled ( Box ) ( ( { theme } ) => ( {
70
70
padding : theme . spacing ( 2 ) ,
71
- backgroundColor : '#15272F' ,
71
+ backgroundColor : accentGrey [ 10 ] ,
72
72
overflow : 'auto' ,
73
73
flex : 1 ,
74
74
minHeight : 0
@@ -89,7 +89,7 @@ export const PanelContainer = styled(Box)<{ intitialPosition: PanelProps['intiti
89
89
zIndex : 99999 ,
90
90
position : 'absolute' ,
91
91
backgroundColor : theme . palette . background . blur ?. light ,
92
- boxShadow : ' 0 4px 16px black' ,
92
+ boxShadow : ` 0 4px 16px ${ black } ` ,
93
93
maxHeight : '80%' ,
94
94
display : 'flex' ,
95
95
boxSizing : 'border-box' ,
You can’t perform that action at this time.
0 commit comments