78 lines
1.5 KiB
CSS
78 lines
1.5 KiB
CSS
.overlay {
|
|
background: rgba(0, 0, 0, 0.5);
|
|
height: var(--visual-viewport-height);
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100vw;
|
|
z-index: var(--default-modal-overlay-z-index);
|
|
}
|
|
|
|
.modal {
|
|
background-color: var(--Base-Surface-Primary-light-Normal);
|
|
border-radius: var(--Corner-radius-Medium) var(--Corner-radius-Medium) 0 0;
|
|
box-shadow: 0px 4px 24px 0px rgba(38, 32, 30, 0.08);
|
|
width: 100%;
|
|
position: absolute;
|
|
left: 0;
|
|
bottom: 0;
|
|
z-index: var(--default-modal-z-index);
|
|
}
|
|
|
|
.dialog {
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
/* for supporting animations within content */
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.header {
|
|
--button-dimension: 32px;
|
|
|
|
box-sizing: content-box;
|
|
display: flex;
|
|
align-items: flex-start;
|
|
min-height: var(--button-dimension);
|
|
position: relative;
|
|
padding: var(--Spacing-x2) var(--Spacing-x3) 0;
|
|
}
|
|
|
|
.content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: var(--Spacing-x2);
|
|
padding: 0 var(--Spacing-x3) var(--Spacing-x1);
|
|
}
|
|
|
|
.close {
|
|
background: none;
|
|
border: none;
|
|
cursor: pointer;
|
|
position: absolute;
|
|
right: var(--Spacing-x2);
|
|
width: var(--button-dimension);
|
|
height: var(--button-dimension);
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 0;
|
|
justify-content: center;
|
|
}
|
|
|
|
@media screen and (min-width: 768px) {
|
|
.overlay {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.modal {
|
|
left: auto;
|
|
bottom: auto;
|
|
width: auto;
|
|
border-radius: var(--Corner-radius-Medium);
|
|
}
|
|
}
|