blob: f132890229dddf689459aab9716e094f62261ee1 (
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
34
35
|
@media all and (display-mode: standalone) {
#wrapwrap.event {
#top,
#bottom {
display: none;
}
}
}
#wrapwrap.event {
.o_pwa_install_banner {
position: fixed;
display: flex;
bottom: 0;
right: 0;
left: 0;
margin: 0;
justify-content: space-between;
align-items: center;
background-color: rgba(255, 255, 255, 1);
border-top: 1px solid $gray-200;
box-shadow: 0 -0.125rem 0.25rem rgba(0, 0, 0, 0.075);
font-size: 1rem;
z-index: $zindex-tooltip;
.o_btn_close {
margin-left: 0;
margin-right: auto;
}
.o_btn_install {
margin-left: auto;
}
}
}
|