@lani.ground/react-modal
Version:
Modal components used in reactjs
26 lines (23 loc) • 411 B
CSS
.react-modal__container {
overflow-x: auto;
overflow-y: auto;
position: fixed;
top: 0;
left: 0;
z-index: 9999;
width: auto;
height: auto;
overscroll-behavior: none;
}
.react-modal__container.center-mode {
inset: 0;
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
width: 100%;
height: 100%;
}
.react-modal__container > div {
display: contents;
}