fix style and andi stuff

This commit is contained in:
zandercymatics 2025-02-07 11:53:27 -07:00
parent 499c8082b3
commit f539ede376
No known key found for this signature in database
GPG key ID: FF4636ABEC9682B7
2 changed files with 11 additions and 5 deletions

View file

@ -536,9 +536,15 @@ details.dja-detail-table {
background-color: transparent; background-color: transparent;
} }
thead tr {
background-color: var(--darkened-bg);
}
td, th { td, th {
padding-left: 12px; padding-left: 12px;
border: none border: none;
background-color: var(--darkened-bg);
color: var(--body-quiet-color);
} }
thead > tr > th { thead > tr > th {

View file

@ -1,9 +1,9 @@
<table> <table class="usa-table usa-table--borderless">
<thead> <thead>
<tr> <tr>
<th>Type</th> <th scope="col">Type</th>
<th>Start date {{ data.start_date }}</th> <th scope="col">Start date {{ data.start_date }}</th>
<th>End date {{ data.end_date }} </th> <th scope="col">End date {{ data.end_date }} </th>
<tr> <tr>
</thead> </thead>
<tbody> <tbody>