@daiyu-5577/quickbuild
Version:
front-end build service
43 lines (39 loc) • 686 B
CSS
@keyframes opacity-scale {
0% {
opacity: 0;
transform: scale(0.4) translate3d(0, 0, 0);
}
100% {
opacity: 1;
transform: scale(1) translate3d(0, 0, 0);
}
}
.baseModal-cnt {
animation: opacity-scale 0.3s linear both;
}
.baseModal {
display: flex;
z-index: 999;
align-items: center;
justify-content: center;
position: fixed;
left: 0;
top: 0;
right: 0;
bottom: 0;
background-color: rgba(0, 0, 0, 0.6);
}
.exit {
width: 30px;
height: 30px;
color: #fff;
font-size: 18px;
border: 1px solid #fff;
position: fixed;
right: 20px;
top: 50px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
}