STYLE add new CSS for wp-block-table with custom styles for table headers and cells

This commit is contained in:
Antoine M 2025-11-25 15:12:59 +01:00
parent 784385d22b
commit 21d354b964

View File

@ -0,0 +1,20 @@
.wp-block-table {
color: red !important;
thead {
@apply bg-primary text-white;
th {
@apply uppercase !font-normal tracking-widest border-none;
}
}
th,
td {
@apply py-4;
}
td {
@apply !text-primary;
border-top: none !important;
border-left: none !important;
border-right: none !important;
}
}