1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-19 09:43:23 +00:00

[PM-15021] Improve in-tab experience for extension (#12155)

This commit is contained in:
Victoria League
2024-11-26 14:15:46 -05:00
committed by GitHub
parent 3db5beaa60
commit 347d6fc718
2 changed files with 2 additions and 2 deletions

View File

@@ -50,7 +50,7 @@ export class PopupWidthService {
private static setStyle(width: PopupWidthOption) { private static setStyle(width: PopupWidthOption) {
const pxWidth = PopupWidthOptions[width] ?? PopupWidthOptions.default; const pxWidth = PopupWidthOptions[width] ?? PopupWidthOptions.default;
document.body.style.width = `${pxWidth}px`; document.body.style.minWidth = `${pxWidth}px`;
} }
/** /**

View File

@@ -19,7 +19,7 @@ body {
} }
body { body {
min-width: 380px !important; min-width: 380px;
height: 600px !important; height: 600px !important;
position: relative; position: relative;
min-height: 100vh; min-height: 100vh;