fix: Issues #149 thead to text-center done.

This commit is contained in:
chiayin
2024-03-01 10:49:30 +08:00
parent 2a8548170b
commit 4704b0deef

View File

@@ -282,7 +282,7 @@ export default {
}
/* Table set */
:deep(.p-datatable-thead) {
@apply sticky top-0 left-0 z-10 bg-neutral-10 text-center
@apply sticky top-0 left-0 z-10 bg-neutral-10
}
:deep(.p-datatable .p-datatable-thead > tr > th) {
@apply !border-y-0 border-neutral-500 bg-neutral-100 after:absolute after:left-0 after:w-full after:h-full after:block after:top-0 after:border-b after:border-t after:border-neutral-500
@@ -290,6 +290,10 @@ export default {
:deep(.p-datatable .p-datatable-tbody > tr > td) {
@apply border-neutral-500 !border-t-0 text-center
}
/* 標題置中 */
:deep(.p-column-header-content) {
@apply justify-center
}
:deep(.p-datatable .p-datatable-thead > tr > th) {
white-space: nowrap;
}