1
0
mirror of https://github.com/bitwarden/web synced 2025-12-10 21:33:16 +00:00

loading styles

This commit is contained in:
Kyle Spearrin
2018-07-06 16:36:51 -04:00
parent 417743ccdd
commit 15cc46bba5
5 changed files with 24 additions and 13 deletions

View File

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