dialog {
position: fixed;
z-index: 600;
left: 0;
right: 0;
top: 0;
bottom: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
display: none;
align-items: center;
justify-content: center;
border: none;
}
.modal {
display: flex;
flex-direction: row;
justify-content: space-around;
align-items: center;
text-align: center;
width: 600px;
height: 280px;
border-radius: 20px;
border: 2px solid rgb(230, 66, 66);
padding: 20px;
white-space: normal;
background-color: #fff;
color: #000;
}
.modal-add-img {
width: 160px;
height: 160px;
background-size: 100%;
background-position: center;
background-repeat: no-repeat;
}
.modal-info {
display: flex;
align-items: center;
height: 120px;
line-height: 2;
font-size: 24px;
color: var(--color-blue);
}
@media screen and (max-width: 800px) {
.modal {
/* justify-content: space-between; */
width: 320px;
height: 220px;
padding: 10px;
}
.modal-add-img {
width: 100px;
height: 100px;
}
.modal-info {
height: 100px;
padding: 0 5px;
font-size: 18px;
}}
