blob: 40d48119e36e81f9f0a223fe7822a8760d5aec68 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#modal-wrapper{
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(25,25,25,0.3);
z-index: 999;
backdrop-filter: blur(5px);
}
.modal-body{
width: 50%;
transform: translateX(50%);
margin-top: 10vh;
}
.aa-Panel{
position: fixed !important;
z-index: 999;
}
|