Etienne
2025-06-10 16:49:37 +02:00
committed by GitHub
parent a68895189c
commit a15318537f
17 changed files with 200 additions and 157 deletions

View File

@ -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',
},
},
};