23 lines
507 B
JavaScript
23 lines
507 B
JavaScript
import { colorInfo } from './style'
|
|
|
|
export default {
|
|
button: {
|
|
borderWidth: 2,
|
|
borderRadius: '10px',
|
|
padding: '0 0 0 0',
|
|
background: colorInfo.panelButtonBackground,
|
|
verticalAlign: 'middle',
|
|
outline: 'none',
|
|
':hover': {
|
|
background: colorInfo.panelButtonBackgroundHover,
|
|
},
|
|
':disabled': {
|
|
background: colorInfo.disabledPanelButtonBackground,
|
|
},
|
|
':active': {
|
|
borderWidth: 0,
|
|
background: colorInfo.panelButtonBackgroundActive,
|
|
}
|
|
}
|
|
}
|