1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-11 13:53:34 +00:00

[EC-1060] feat: center align table cell content (#4618)

This commit is contained in:
Andreas Coroiu
2023-02-07 00:08:20 +01:00
committed by GitHub
parent cf972e784c
commit d42d626154

View File

@@ -5,6 +5,6 @@ import { HostBinding, Directive } from "@angular/core";
}) })
export class CellDirective { export class CellDirective {
@HostBinding("class") get classList() { @HostBinding("class") get classList() {
return ["tw-p-3"]; return ["tw-p-3", "tw-align-middle"];
} }
} }