feat(verify-page): new verify page design #151

Merged
enes merged 11 commits from 136-verify-page-after-merges into staging 2024-08-20 11:57:40 +00:00
2 changed files with 10 additions and 2 deletions
Showing only changes of commit 423b6b6792 - Show all commits

View File

@ -104,10 +104,9 @@ const SlimPdfView = ({
{marks.map((m) => { {marks.map((m) => {
return ( return (
<div <div
className={styles.mark}
key={m.id} key={m.id}
style={{ style={{
position: 'absolute',
border: '1px dotted black',
left: inPx(m.location.left), left: inPx(m.location.left),
top: inPx(m.location.top), top: inPx(m.location.top),
width: inPx(m.location.width), width: inPx(m.location.width),

View File

@ -74,3 +74,12 @@
flex-direction: column; flex-direction: column;
gap: 15px; gap: 15px;
} }
.mark {
position: absolute;
border: 1px dotted black;
display: flex;
justify-content: center;
align-items: center;
}