mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-08 06:41:50 +08:00
19 lines
327 B
TypeScript
19 lines
327 B
TypeScript
const styles = {
|
|
style: {
|
|
position: 'fixed',
|
|
top: '0',
|
|
left: '0',
|
|
bottom: '0',
|
|
right: '0',
|
|
display: 'flex',
|
|
alignItems: 'center',
|
|
overflow: 'auto',
|
|
},
|
|
innerStyle: {
|
|
margin: 'auto',
|
|
maxHeight: '100%', // Hack for centering correctly in IE11
|
|
},
|
|
} as const;
|
|
|
|
export default styles;
|