Skip to content

Commit

Permalink
Fix for failing regression test (#4567)
Browse files Browse the repository at this point in the history
* Fix for failing regression test

* Switched to rem
  • Loading branch information
sambodeme authored Dec 30, 2024
1 parent 524ea19 commit 7f30c3f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion backend/audit/templates/audit/my_submissions.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ <h1 class="font-sans-xl">Audits in progress</h1>
The audits listed below are in progress, and you are still able to edit them before submission. Select an audit by clicking on its Status to make changes and continue the submission process.</caption>
<thead>
<tr>
<th data-sortable scope="col" role="columnheader">Status</th>
<th class="status-column" data-sortable scope="col" role="columnheader">Status</th>
<th data-sortable scope="col" role="columnheader">Entity name</th>
<th data-sortable scope="col" role="columnheader">Report ID</th>
<th data-sortable scope="col" role="columnheader">
Expand Down
4 changes: 4 additions & 0 deletions backend/static/scss/_table.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.status-column {
width: 7.5rem;
text-align: left;
}
1 change: 1 addition & 0 deletions backend/static/scss/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,4 @@
@use '_form';
@use '_search';
@use '_workbook-upload';
@use '_table';

0 comments on commit 7f30c3f

Please sign in to comment.