mirror of
https://github.com/bitwarden/browser
synced 2025-12-23 11:43:46 +00:00
11 lines
213 B
TypeScript
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"];
|
|
}
|
|
}
|