fix: styling

This commit is contained in:
eugene 2024-08-06 12:46:42 +03:00
parent c81a0a52ce
commit 12fe476e97
4 changed files with 10 additions and 6 deletions

View File

@ -63,6 +63,7 @@ import styles from './style.module.scss'
import { PdfFile } from '../../types/drawing' import { PdfFile } from '../../types/drawing'
import { DrawPDFFields } from '../../components/DrawPDFFields' import { DrawPDFFields } from '../../components/DrawPDFFields'
import { Mark } from '../../types/mark.ts' import { Mark } from '../../types/mark.ts'
import { Container } from '../../components/Container'
export const CreatePage = () => { export const CreatePage = () => {
const navigate = useNavigate() const navigate = useNavigate()
@ -693,7 +694,7 @@ export const CreatePage = () => {
return ( return (
<> <>
{isLoading && <LoadingSpinner desc={loadingSpinnerDesc} />} {isLoading && <LoadingSpinner desc={loadingSpinnerDesc} />}
<Box className={styles.container}> <Container className={styles.container}>
<TextField <TextField
label="Title" label="Title"
value={title} value={title}
@ -782,7 +783,7 @@ export const CreatePage = () => {
Create Create
</Button> </Button>
</Box> </Box>
</Box> </Container>
</> </>
) )
} }

View File

@ -6,6 +6,8 @@
color: $text-color; color: $text-color;
margin-top: 10px; margin-top: 10px;
gap: 10px; gap: 10px;
width: 550px;
max-width: 550px;
.inputBlock { .inputBlock {
display: flex; display: flex;

View File

@ -31,11 +31,11 @@ import {
signEventForMetaFile, signEventForMetaFile,
updateUsersAppData updateUsersAppData
} from '../../utils' } from '../../utils'
import { Container } from '../../components/Container'
import { DisplayMeta } from './internal/displayMeta' import { DisplayMeta } from './internal/displayMeta'
import styles from './style.module.scss' import styles from './style.module.scss'
import { PdfFile } from '../../types/drawing.ts' import { PdfFile } from '../../types/drawing.ts'
import { convertToPdfFile } from '../../utils/pdf.ts' import { convertToPdfFile } from '../../utils/pdf.ts'
// import PdfView from '../../components/PDFView'
import { CurrentUserMark, Mark } from '../../types/mark.ts' import { CurrentUserMark, Mark } from '../../types/mark.ts'
import { getLastSignersSig } from '../../utils/sign.ts' import { getLastSignersSig } from '../../utils/sign.ts'
import { import {
@ -44,7 +44,6 @@ import {
isCurrentUserMarksComplete, updateMarks isCurrentUserMarksComplete, updateMarks
} from '../../utils' } from '../../utils'
import PdfMarking from '../../components/PDFView/PdfMarking.tsx' import PdfMarking from '../../components/PDFView/PdfMarking.tsx'
import { Container } from '../../components/Container'
enum SignedStatus { enum SignedStatus {
Fully_Signed, Fully_Signed,
User_Is_Next_Signer, User_Is_Next_Signer,
@ -848,7 +847,7 @@ export const SignPage = () => {
if (isReadyToSign) { if (isReadyToSign) {
return ( return (
<> <>
<Box className={styles.container}> <Container className={styles.container}>
{displayInput && ( {displayInput && (
<> <>
<Typography component="label" variant="h6"> <Typography component="label" variant="h6">
@ -914,7 +913,7 @@ export const SignPage = () => {
)} )}
</> </>
)} )}
</Box> </Container>
</> </>
) )
} }

View File

@ -2,6 +2,8 @@
.container { .container {
color: $text-color; color: $text-color;
width: 550px;
max-width: 550px;
.inputBlock { .inputBlock {
position: relative; position: relative;