fix(verify-page): add mark styling
This commit is contained in:
parent
268a4db3ff
commit
423b6b6792
@ -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),
|
||||||
|
@ -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;
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user