1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-06-25 10:25:36 +02: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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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