thaw/src/modal/modal.css

32 lines
467 B
CSS
Raw Normal View History

2023-03-28 12:37:24 +08:00
.melt-modal-container {
z-index: 2001;
}
.melt-modal-mask {
position: fixed;
top: 0;
right: 0;
left: 0;
bottom: 0;
background-color: #0007;
z-index: 2000;
}
.melt-modal-body {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
display: flex;
min-height: 100%;
z-index: 2002;
}
2023-03-29 15:32:54 +08:00
.melt-modal-body > :deep(.melt-card) {
2023-03-28 12:37:24 +08:00
width: 600px;
margin: auto;
}
2023-03-29 15:32:54 +08:00
.melt-model-title {
2023-03-28 12:37:24 +08:00
font-size: 16px;
}