mirror of
https://github.com/bitwarden/browser
synced 2025-01-23 01:33:02 +01:00
12 lines
273 B
TypeScript
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");
|
|
}
|
|
}
|