bitwarden-estensione-browser/bitwarden_license/bit-web/src/app/secrets-manager/layout/layout.component.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
260 B
TypeScript
Raw Normal View History

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