21 lines
367 B
CSS
21 lines
367 B
CSS
.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;
|
|
}
|
|
}
|