blob: 4bf9eb79f99ec3ee217ac8a2b67aaa68a18ba6b5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
.mainViewModal-cont {
pointer-events: all;
position: absolute;
z-index: 10000;
width: 100%;
height: 100%;
box-shadow: #00000044 5px 5px 10px;
.dialogue-box {
position: absolute;
z-index: 1000;
text-align: center;
justify-content: center;
align-self: center;
align-content: center;
// border-radius: 10px;
box-shadow: #00000044 5px 5px 10px;
transform: translate(-50%, -50%);
top: 50%;
left: 50%;
transition: 0.5s all ease;
border-radius: 10px;
overflow: hidden;
}
.overlay {
width: 100%;
height: 100%;
position: absolute;
z-index: 999;
transition: 0.5s all ease;
backdrop-filter: blur(5px);
}
}
|