import { CommonModule } from "@angular/common"; import { Component } from "@angular/core"; import { PlatformUtilsService } from "@bitwarden/common/platform/abstractions/platform-utils.service"; import { NavigationModule } from "@bitwarden/components"; @Component({ selector: "app-toggle-width", template: ``, standalone: true, imports: [CommonModule, NavigationModule], }) export class ToggleWidthComponent { protected isDev: boolean; constructor(platformUtilsService: PlatformUtilsService) { this.isDev = platformUtilsService.isDev(); } protected toggleWidth() { if (document.body.style.minWidth === "unset") { document.body.style.minWidth = ""; } else { document.body.style.minWidth = "unset"; } } }