Fix stray floater in mobile

Oddly, it only appears in Channel Page, not the Home Page. Should be the same thing...
This commit is contained in:
infinite-persistence 2022-05-31 18:39:14 +08:00
parent a2f15b8348
commit 4ea6b848d1
No known key found for this signature in database
GPG key ID: B9C3252EDC3D0AA0

View file

@ -17,7 +17,7 @@
.avp-p-wrapper { .avp-p-wrapper {
// Hide by default, so that any stray floater won't be visible. // Hide by default, so that any stray floater won't be visible.
// We'll enable it only within our designated container. // We'll enable it only within our designated container (see below).
display: none; display: none;
} }
@ -71,6 +71,10 @@
display: block; display: block;
} }
.avp-p-wrapper.av-floating {
display: none;
}
#aniBox, #aniBox,
#av-container { #av-container {
border-radius: var(--border-radius); border-radius: var(--border-radius);