1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-15 15:53:27 +00:00

[CL-24] Add tables (#2950)

This commit is contained in:
Oscar Hinton
2022-07-28 12:43:00 +02:00
committed by GitHub
parent da341e1317
commit 4fc278b956
7 changed files with 111 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
import { HostBinding, Directive } from "@angular/core";
@Directive({
selector: "th[bitCell], td[bitCell]",
})
export class CellDirective {
@HostBinding("class") get classList() {
return ["tw-p-3"];
}
}