mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-08 00:43:54 +00:00
93fb48ea1c
* feat: operator view * chore: smoke test operator * refactor: small improvements from deepsource --------- Co-authored-by: arihanv <arihanvaranasi@gmail.com> Co-authored-by: arihanv <63890951+arihanv@users.noreply.github.com>
28 lines
654 B
TypeScript
28 lines
654 B
TypeScript
export const ontimeBlockRadio = {
|
|
control: {
|
|
borderColor: '#262626', // $gray-1200
|
|
backgroundColor: '#262626', // $gray-1200
|
|
_checked: {
|
|
borderColor: '#262626', // $gray-1200
|
|
color: '#3182ce', // $action-blue
|
|
backgroundColor: '#3182ce', // $action-blue
|
|
},
|
|
_hover: {
|
|
color: '#3182ce', // $action-blue
|
|
backgroundColor: '#3182ce', // $action-blue
|
|
outline: 'none',
|
|
},
|
|
},
|
|
label: {
|
|
fontSize: '0.7em',
|
|
letterSpacing: '0.3px',
|
|
color: '#9d9d9d', // $gray-500
|
|
_checked: {
|
|
color: '#cfcfcf', // $gray-300
|
|
},
|
|
_hover: {
|
|
color: '#e2e2e2', // $gray-200
|
|
},
|
|
},
|
|
};
|