24 lines
541 B
JavaScript
24 lines
541 B
JavaScript
|
export default {
|
||
|
root: {
|
||
|
maxWidth: '12.5rem',
|
||
|
gutter: '0.25rem',
|
||
|
shadow: '{overlay.popover.shadow}',
|
||
|
padding: '0.5rem 0.75rem',
|
||
|
borderRadius: '{overlay.popover.border.radius}'
|
||
|
},
|
||
|
colorScheme: {
|
||
|
light: {
|
||
|
root: {
|
||
|
background: '{surface.700}',
|
||
|
color: '{surface.0}'
|
||
|
}
|
||
|
},
|
||
|
dark: {
|
||
|
root: {
|
||
|
background: '{surface.700}',
|
||
|
color: '{surface.0}'
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
};
|