Fix viewer position and shape in mobile mode (#7677)

Co-authored-by: Jean-Michel Morani <probono+lbry@morani.org>
This commit is contained in:
jm-morani 2022-08-26 15:36:48 -04:00 committed by GitHub
parent 1c17ff5dd9
commit 7a8a16cd9c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 2 deletions

View file

@ -21,7 +21,6 @@ import AutoplayCountdown from 'component/autoplayCountdown';
// scss/init/vars.scss
// --header-height
const HEADER_HEIGHT = 60;
const HEADER_HEIGHT_MOBILE = 60;
const IS_DESKTOP_MAC = typeof process === 'object' ? process.platform === 'darwin' : false;
const DEBOUNCE_WINDOW_RESIZE_HANDLER_MS = 100;
@ -356,7 +355,7 @@ export default function FileRenderFloating(props: Props) {
top:
fileViewerRect.windowOffset +
fileViewerRect.top -
(isMobile ? HEADER_HEIGHT_MOBILE : HEADER_HEIGHT) -
(isMobile ? 0 : HEADER_HEIGHT) -
(IS_DESKTOP_MAC ? 24 : 0),
}
: {}

View file

@ -3,6 +3,10 @@
position: absolute;
top: var(--spacing-s);
border-radius: var(--border-radius);
@media (max-width: $breakpoint-small) {
border-radius: 0;
}
}
.content__viewer--disable-click {
@ -175,6 +179,10 @@
width: 100%;
height: 100%;
}
@media (max-width: $breakpoint-small) {
border-radius: 0;
}
}
.content__cover--text {