24 lines
500 B
TypeScript
24 lines
500 B
TypeScript
export const dialogSmall = {
|
|
width:'26vw',
|
|
maxWidth:'500px',
|
|
minWidth:'300px',
|
|
closeOnClickModal:false,
|
|
draggable:true,
|
|
class:'dialog-small'
|
|
}
|
|
export const dialogMiddle = {
|
|
width:'42vw',
|
|
maxWidth:'800px',
|
|
minWidth:'600px',
|
|
closeOnClickModal:false,
|
|
draggable:true,
|
|
class:'dialog-middle'
|
|
}
|
|
export const dialogBig = {
|
|
width:'62vw',
|
|
maxWidth:'1200px',
|
|
minWidth:'800px',
|
|
closeOnClickModal:false,
|
|
draggable:true,
|
|
class:'dialog-big',
|
|
} |