blob: 15df272fb4c208d338cf71b4ced637438d4156a1 (
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
|
.bottom-menu {
background-color: var(--bg);
padding: 0.5em;
position: fixed;
bottom: 0.5em;
border: 0px solid transparent;
border-radius: 5px;
left: 50%;
transform: translateX(-50%);
z-index: 100;
}
.menu-br {
position: fixed;
bottom: 0px;
right: 0px;
display: block;
text-align: right;
}
.menu-br .version {
font-size: medium;
font-weight: bold;
color: var(--ac-light);
padding: 0.5em;
}
|