Initial version of record audits

This commit is contained in:
2023-01-20 10:37:15 -06:00
parent 7099ea87f7
commit 4a658e9a5c
4 changed files with 356 additions and 6 deletions

View File

@ -293,3 +293,21 @@ input[type="search"]::-webkit-search-results-decoration { display: none; }
color: blue;
font-size: 14px;
}
.auditGroupBlock
{
position: relative;
}
.auditGroupBlock .singleAuditBlock::before
{
content: "";
position: absolute;
top: 2rem;
left: 19px;
height: calc(100% - 60px);
z-index: 1;
opacity: 1;
border-right: 0.0625rem solid rgb(222, 226, 230);
}