mirror of
https://github.com/Unleash/unleash.git
synced 2025-02-09 00:18:00 +01:00
22 lines
445 B
JavaScript
22 lines
445 B
JavaScript
|
export const modalStyles = {
|
||
|
overlay: {
|
||
|
position: 'absolute',
|
||
|
top: 0,
|
||
|
left: 0,
|
||
|
right: 0,
|
||
|
bottom: 0,
|
||
|
backgroundColor: 'rgba(0, 0, 0, 0.25)',
|
||
|
zIndex: 5,
|
||
|
},
|
||
|
content: {
|
||
|
width: '500px',
|
||
|
maxWidth: '90%',
|
||
|
margin: '0',
|
||
|
top: '50%',
|
||
|
left: '50%',
|
||
|
right: 'auto',
|
||
|
bottom: 'auto',
|
||
|
transform: 'translate(-50%, -50%)',
|
||
|
},
|
||
|
};
|