Files
FastUI/packages/fastui/src/components/modal.css
2023-11-19 16:35:59 +00:00

50 lines
752 B
CSS

.fu-modal-overlay {
position: fixed;
display: none;
z-index: 1;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgba(0, 0, 0, 0.4);
}
.fu-modal-overlay.open {
display: block;
}
.fu-modal-content {
background: white;
margin: 100px auto;
border: 1px solid #888;
width: 95%;
max-width: 500px;
border-radius: 8px;
}
.fu-model-header {
display: flex;
justify-content: space-between;
padding: 10px 20px;
border-bottom: 1px solid #ccc;
}
.fu-close {
color: #aaa;
font-size: 28px;
font-weight: bold;
cursor: pointer;
}
.fu-modal-body {
padding: 20px;
}
.fu-modal-footer {
display: flex;
justify-content: right;
padding: 10px 20px 20px;
border-top: 1px solid #ccc;
}