16 lines
334 B
JavaScript
16 lines
334 B
JavaScript
|
export default {
|
||
|
root: {
|
||
|
background: '{content.border.color}',
|
||
|
borderRadius: '{content.border.radius}',
|
||
|
height: '1.25rem'
|
||
|
},
|
||
|
value: {
|
||
|
background: '{primary.color}'
|
||
|
},
|
||
|
label: {
|
||
|
color: '{primary.inverse.color}',
|
||
|
fontSize: '0.75rem',
|
||
|
fontWeight: '600'
|
||
|
}
|
||
|
};
|