mirror of
https://github.com/bitwarden/browser
synced 2025-12-13 23:03:32 +00:00
12 lines
233 B
TypeScript
12 lines
233 B
TypeScript
import { Directive, HostBinding } from "@angular/core";
|
|
|
|
@Directive({
|
|
selector: "th[bitCell], td[bitCell]",
|
|
standalone: true,
|
|
})
|
|
export class CellDirective {
|
|
@HostBinding("class") get classList() {
|
|
return ["tw-p-3"];
|
|
}
|
|
}
|