1
0
mirror of https://github.com/bitwarden/web synced 2025-12-06 00:03:28 +00:00
Files
web/src/app/layouts/user-layout.component.ts
Kyle Spearrin 15cc46bba5 loading styles
2018-07-06 16:36:51 -04:00

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');
}
}