This commit is contained in:
smanylov
2025-12-18 17:21:18 +07:00
parent a538fe1684
commit 7540dd57de
8 changed files with 201 additions and 46 deletions
+22
View File
@@ -125,4 +125,26 @@
max-width: 500px;
margin: 0 auto;
}
}
.modal-wrapper {
position: fixed;
z-index: 101;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
background: #0000007a;
.modal-window {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
padding: 20px;
background: #fff;
color: #000;
border-radius: 20px;
box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 20px;
}
}