fix(verify-page): add mark styling

This commit is contained in:
enes 2024-08-15 17:34:11 +02:00
parent 268a4db3ff
commit 423b6b6792
2 changed files with 10 additions and 2 deletions

View File

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

View File

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