benivo-ui-library
Version:
Benivo UI library
42 lines (37 loc) • 856 B
text/less
.entry-popup-frame {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1000;
padding: 0 24px;
pointer-events: none;
.frame-box {
display: flex;
width: 100%;
height: 100%;
gap: 10px;
align-items: end;
justify-content: end;
}
.popup-box {
width: max-content;
max-width: 502px;
}
&.modal-frame {
z-index: 1200;
background-color: rgba(79, 90, 101, 0.2);
pointer-events: all;
.popup-box {
&.expanded {
max-width: unset;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
z-index: 10;
}
}
}
}