1
0
mirror of https://github.com/bitwarden/browser synced 2025-01-23 01:33:02 +01:00
bitwarden-estensione-browser/apps/web/src/app/layouts/user-layout.component.ts

12 lines
273 B
TypeScript

import { Component, OnInit } from "@angular/core";
@Component({
selector: "app-user-layout",
templateUrl: "user-layout.component.html",
})
export class UserLayoutComponent implements OnInit {
ngOnInit() {
document.body.classList.remove("layout_frontend");
}
}