From e681513785bd0df6d16c0b34405ed834ca39740c Mon Sep 17 00:00:00 2001 From: Eugene Date: Tue, 6 Aug 2024 12:49:16 +0300 Subject: [PATCH] fix: styling --- src/components/PDFView/PdfMarking.tsx | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/src/components/PDFView/PdfMarking.tsx b/src/components/PDFView/PdfMarking.tsx index 8de12f0..a6dc1a4 100644 --- a/src/components/PDFView/PdfMarking.tsx +++ b/src/components/PDFView/PdfMarking.tsx @@ -1,5 +1,3 @@ -import { Box } from '@mui/material' -import styles from '../../pages/sign/style.module.scss' import PdfView from './index.tsx' import MarkFormField from '../../pages/sign/MarkFormField.tsx' import { PdfFile } from '../../types/drawing.ts' @@ -9,9 +7,10 @@ import { findNextCurrentUserMark, isCurrentUserMarksComplete, updateCurrentUserMarks, -} from '../../utils/mark.ts' - +} from '../../utils' import { EMPTY } from '../../utils/const.ts' +import { Container } from '../Container' +import styles from '../../pages/sign/style.module.scss' interface PdfMarkingProps { files: { pdfFile: PdfFile, filename: string, hash: string | null }[], @@ -74,7 +73,7 @@ const PdfMarking = (props: PdfMarkingProps) => { return ( <> - + { currentUserMarks?.length > 0 && ( { selectedMarkValue={selectedMarkValue} /> )} - + ) }