closes https://github.com/twentyhq/core-team-issues/issues/916   
23 lines
337 B
TypeScript
23 lines
337 B
TypeScript
export const MODAL: {
|
|
size: { [key: string]: { width?: string; height?: string } };
|
|
} = {
|
|
size: {
|
|
sm: {
|
|
width: '300px',
|
|
},
|
|
md: {
|
|
width: '400px',
|
|
},
|
|
lg: {
|
|
width: '53%',
|
|
},
|
|
xl: {
|
|
width: '1200px',
|
|
height: '800px',
|
|
},
|
|
fullscreen: {
|
|
height: '100dvh',
|
|
},
|
|
},
|
|
};
|