mirror of
https://github.com/bitwarden/browser
synced 2025-12-11 05:43:41 +00:00
Add a dev tool for toggling the web vault width. This allows developers and designers to experiment with how the vault currently behaves with responsiveness and ensure new functionality looks good.
22 lines
775 B
TypeScript
22 lines
775 B
TypeScript
import { NgModule } from "@angular/core";
|
|
|
|
import { LayoutComponent as BitLayoutComponent, NavigationModule } from "@bitwarden/components";
|
|
import { OrgSwitcherComponent } from "@bitwarden/web-vault/app/layouts/org-switcher/org-switcher.component";
|
|
import { ToggleWidthComponent } from "@bitwarden/web-vault/app/layouts/toggle-width.component";
|
|
import { SharedModule } from "@bitwarden/web-vault/app/shared/shared.module";
|
|
|
|
import { LayoutComponent } from "./layout.component";
|
|
import { NavigationComponent } from "./navigation.component";
|
|
|
|
@NgModule({
|
|
imports: [
|
|
SharedModule,
|
|
NavigationModule,
|
|
BitLayoutComponent,
|
|
OrgSwitcherComponent,
|
|
ToggleWidthComponent,
|
|
],
|
|
declarations: [LayoutComponent, NavigationComponent],
|
|
})
|
|
export class LayoutModule {}
|