blob: 645e9d23bfb218d1fdb2ca3e77baf1e17088970e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
.popup {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
z-index: 9999;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
|