Merge pull request #1203 from GSA/1189-bug-norfolk-batches-table-repeats-one-batch

Bugfix: Recent Batches table repeats #1189
This commit is contained in:
Carlo Costino
2024-02-20 10:34:12 -05:00
committed by GitHub
4 changed files with 108 additions and 82 deletions

View File

@@ -381,28 +381,29 @@ td.table-empty-message {
}
.job-table {
.usa-table {
thead th.file-name {
width: 25%;
}
thead th.template {
width: 20%;
}
thead th.time-sent {
width: 30%;
}
thead th.sender {
width: 15%;
}
thead th.\#-of-recipients {
width: 5%;
}
thead th.report {
width: 5%;
}
th {
padding: 0.5rem 0.5rem;
}
width: 100%;
border-collapse: collapse;
td.file-name {
width: 25%;
overflow-wrap: anywhere;
}
td.template {
width: 20%;
}
td.time-sent {
width: 20%;
}
td.sender {
width: 15%;
}
td.count-of-recipients {
width: 5%;
}
td.report {
width: 5%;
}
th {
padding: 0.5rem 0.5rem;
}
}