mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-06 09:20:43 +01:00
fix popup height
This commit is contained in:
parent
2ac9f92267
commit
1cb77f847e
@ -79,12 +79,16 @@ export function initFactory(platformUtilsService: PlatformUtilsService, i18nServ
|
||||
return async () => {
|
||||
if (!popupUtilsService.inPopup(window)) {
|
||||
window.document.body.classList.add('body-full');
|
||||
} else if (window.screen.availHeight < 600) {
|
||||
} else {
|
||||
if (window.screen.availHeight < 600) {
|
||||
window.document.body.classList.add('body-xs');
|
||||
} else if (window.screen.availHeight <= 800) {
|
||||
window.document.body.classList.add('body-sm');
|
||||
}
|
||||
|
||||
document.body.style.setProperty('height',`${window.innerHeight}px`,'important');
|
||||
}
|
||||
|
||||
if (BrowserApi.getBackgroundPage() != null) {
|
||||
stateService.save(ConstantsService.disableFaviconKey,
|
||||
await storageService.get<boolean>(ConstantsService.disableFaviconKey));
|
||||
|
Loading…
Reference in New Issue
Block a user