blob: e2161f86941ccc290f6cfa150c08fee27395cba4 (
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
|
.content.content {
background: none;
position: fixed;
top: 0;
bottom: 0;
left: 0;
right: 0;
transform: none;
padding: 0;
border-radius: 0;
display: flex;
justify-content: center;
overflow-y: auto;
}
.container {
position: relative;
margin-left: 20px;
margin-right: 20px;
}
.overlay.overlay {
background-color: var(--color-background);
}
.fixed {
position: fixed;
padding: 16px;
bottom: 0;
right: 0;
}
|