[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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

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"];
} }
} }