mirror of
https://github.com/bitwarden/web
synced 2025-12-06 00:03:28 +00:00
15 lines
294 B
TypeScript
15 lines
294 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');
|
|
}
|
|
}
|