mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-10 18:03:47 +00:00
38654f8981
* feat: quick start modal * refactor: end message is part of view settings * refactor: small tweaks and type improvements
20 lines
411 B
TypeScript
20 lines
411 B
TypeScript
export const ontimeTab = {
|
|
tab: {
|
|
fontWeight: 600,
|
|
borderBottom: '2px solid transparent',
|
|
color: '#9d9d9d', // $gray-500
|
|
marginBottom: '-2px',
|
|
_selected: {
|
|
color: '#101010', // $ui-black
|
|
border: 'none',
|
|
borderBottom: '2px solid #779BE7', // $blue-400
|
|
},
|
|
},
|
|
tablist: {
|
|
borderBottom: '2px solid #ececec', // $gray-100
|
|
},
|
|
tabpanel: {
|
|
padding: 0,
|
|
},
|
|
};
|