-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.scss
79 lines (69 loc) · 1.42 KB
/
styles.scss
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
privacy-banner {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: white;
border-top: 5px solid #EEE;
display: flex;
justify-content: space-between;
align-items: center;
gap: 1.5rem;
padding: 16px 32px;
z-index: 1000;
&[hidden] {
display: none;
}
privacy-banner-actions {
display: flex;
gap: 0.75rem;
button {
cursor: pointer;
white-space: pre;
}
}
}
privacy-overlay {
position: relative;
display: block;
z-index: 0;
&::before {
content: '';
position: absolute;
inset: 0;
backdrop-filter: blur(2px);
z-index: 7;
align-items: center;
justify-content: center;
flex-direction: column;
text-align: center;
}
&[hidden] {
&::before {
display: none;
}
privacy-overlay-message {
display: none;
}
}
&:not([hidden]) > privacy-aware-content {
opacity: 0.4;
pointer-events: none;
}
privacy-overlay-message {
top: 50%;
transform: translateY(-50%);
background: white;
border: 5px solid #EEE;
left: 3rem;
right: 3rem;
padding: 1.5rem;
position: absolute;
text-align: left;
z-index: 20;
margin: 0;
}
}
private-data-processor {
display: none;
}