From d42d626154bf831256975937452c97deed6ec3ea Mon Sep 17 00:00:00 2001 From: Andreas Coroiu Date: Tue, 7 Feb 2023 00:08:20 +0100 Subject: [PATCH] [EC-1060] feat: center align table cell content (#4618) --- libs/components/src/table/cell.directive.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/components/src/table/cell.directive.ts b/libs/components/src/table/cell.directive.ts index 7083ed462e..058d90e577 100644 --- a/libs/components/src/table/cell.directive.ts +++ b/libs/components/src/table/cell.directive.ts @@ -5,6 +5,6 @@ import { HostBinding, Directive } from "@angular/core"; }) export class CellDirective { @HostBinding("class") get classList() { - return ["tw-p-3"]; + return ["tw-p-3", "tw-align-middle"]; } }