STYLE add new CSS for wp-block-table with custom styles for table headers and cells
This commit is contained in:
parent
784385d22b
commit
21d354b964
20
resources/css/blocks/wp-block-table.css
Normal file
20
resources/css/blocks/wp-block-table.css
Normal 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;
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue
Block a user