1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-23 11:43:46 +00:00
Files
browser/libs/components/src/table/cell.directive.ts
2022-07-28 12:43:00 +02:00

11 lines
213 B
TypeScript

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