[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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -50,7 +50,7 @@ export class PopupWidthService {
private static setStyle(width: PopupWidthOption) {
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 {
min-width: 380px !important;
min-width: 380px;
height: 600px !important;
position: relative;
min-height: 100vh;