Add borders to the table groups.

This commit is contained in:
Tom Alexander 2023-12-22 18:05:39 -05:00
parent 95d4ee7080
commit 1107a653cf
Signed by: talexander
GPG Key ID: D3A179C9A53C0EDE
1 changed files with 14 additions and 0 deletions

View File

@ -194,6 +194,9 @@ body {
border-collapse: collapse;
border: 1px solid var(--table-border-color);
> tbody {
border-width: 1px 0;
border-style: solid;
border-color: var(--table-border-color);
> tr {
> td {
padding: 0.2rem;
@ -206,5 +209,16 @@ body {
background-color: var(--table-even-background-color);
}
}
> thead {
border-width: 1px 0;
border-style: solid;
border-color: var(--table-border-color);
> tr {
> th {
padding: 0.2rem;
font-weight: 600;
}
}
}
}
}