Releasing new design #161

Merged
b merged 241 commits from staging into main 2024-08-21 11:38:25 +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) => {
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;
}