cyclejs-modal
Version:
An easy way to open custom modals in a cyclejs app
27 lines (22 loc) • 314 B
CSS
#app {
font-size: 35px;
}
body, html {
max-height: 100%;
margin: 0;
}
body {
padding: 20px;
}
.modal-container {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
display: flex;
}
.modal-content {
margin: auto;
}