mirror of
https://github.com/adoyle0/thaw.git
synced 2025-03-13 05:59:49 -04:00
31 lines
467 B
CSS
31 lines
467 B
CSS
.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;
|
|
}
|
|
|
|
.melt-modal-body > :deep(.melt-card) {
|
|
width: 600px;
|
|
margin: auto;
|
|
}
|
|
|
|
.melt-model-title {
|
|
font-size: 16px;
|
|
}
|