We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 046da44 commit 31f4b09Copy full SHA for 31f4b09
1 file changed
custom.scss
@@ -97,14 +97,24 @@ h1.title, .title.h1 {
97
// table style
98
.table {
99
// heading
100
- & tr:first-of-type {
+ &:not(:has(.header)) tr:first-of-type {
101
background-color: var(--bs-heading-color-dark);
102
font-weight: 600;
103
border-bottom: 2px solid;
104
- border-color: inherit;
+ border-color: var(--bs-body-color);
105
106
- & td {
107
- color: black;
+ }
+
108
+ &:has(.header) {
109
+ .header {
110
+ background-color: var(--bs-heading-color-dark);
111
+ font-weight: 600;
112
+ border: 2px solid;
113
114
115
116
+ tr th:not(:last-child), tbody tr td:not(:last-child) {
117
+ border-right: 2px solid;
118
}
119
120
0 commit comments