Test fix: Prevent pull-to-refresh on Chrome PWA
This commit is contained in:
parent
794ee3cb74
commit
e53f0efde9
|
@ -115,6 +115,14 @@ body {
|
|||
overflow-wrap: break-word;
|
||||
}
|
||||
|
||||
/* Prevent pull-to-refresh on Chrome PWA */
|
||||
@media (display-mode: standalone) {
|
||||
html,
|
||||
body {
|
||||
overscroll-behavior-y: none;
|
||||
}
|
||||
}
|
||||
|
||||
a {
|
||||
color: var(--link-color);
|
||||
text-decoration-color: var(--link-faded-color);
|
||||
|
|
Loading…
Reference in a new issue