blob: 4397a7f20216d19d7b73873718bc9785cbbd4a01 (
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
|
/**
* styles for alert popup container
* should be injected into web page to set the alert container position on page properly
*/
.adguard-alert-iframe {
min-width: 360px;
max-width: calc(100vw - 44px);
border: none;
position: fixed;
z-index: 1000;
top: auto;
right: 22px;
bottom: 8px;
left: auto;
display: block;
margin: 0;
color-scheme: light dark;
visibility: hidden;
}
@media (max-width: 640px) {
.adguard-alert-iframe {
width: auto;
max-width: none;
right: 22px;
bottom: 22px;
left: 22px;
}
}
|