mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-08 00:43:54 +00:00
38654f8981
* feat: quick start modal * refactor: end message is part of view settings * refactor: small tweaks and type improvements
37 lines
613 B
TypeScript
37 lines
613 B
TypeScript
export const ontimeModal = {
|
|
header: {
|
|
fontWeight: 400,
|
|
letterSpacing: '0.3px',
|
|
padding: '16px 24px',
|
|
fontSize: '20px',
|
|
color: '#202020', // $gray-50
|
|
},
|
|
dialog: {
|
|
borderRadius: '3px',
|
|
padding: 0,
|
|
minHeight: 'min(500px, 75vh)',
|
|
},
|
|
body: {
|
|
padding: 0,
|
|
display: 'flex',
|
|
flexDirection: 'column',
|
|
},
|
|
closeButton: {
|
|
color: '#202020', // $gray-50
|
|
},
|
|
footer: {
|
|
padding: '8px',
|
|
},
|
|
};
|
|
|
|
export const ontimeSmallModal = {
|
|
...ontimeModal,
|
|
body: {
|
|
padding: '16px',
|
|
fontSize: '14px',
|
|
},
|
|
dialog: {
|
|
minHeight: 'min(200px, 10vh)',
|
|
},
|
|
};
|