update import steps design (#12463)
closes https://github.com/twentyhq/core-team-issues/issues/916   
This commit is contained in:
@ -1,8 +1,22 @@
|
||||
export const MODAL = {
|
||||
export const MODAL: {
|
||||
size: { [key: string]: { width?: string; height?: string } };
|
||||
} = {
|
||||
size: {
|
||||
sm: '300px',
|
||||
md: '400px',
|
||||
lg: '53%',
|
||||
fullscreen: `100dvh`,
|
||||
sm: {
|
||||
width: '300px',
|
||||
},
|
||||
md: {
|
||||
width: '400px',
|
||||
},
|
||||
lg: {
|
||||
width: '53%',
|
||||
},
|
||||
xl: {
|
||||
width: '1200px',
|
||||
height: '800px',
|
||||
},
|
||||
fullscreen: {
|
||||
height: '100dvh',
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user