style: refine PDF component layout and styles for improved presentation

- Removed unnecessary margin from the creation time display in SuitableDownloadPdf for better alignment.
- Added flexbox properties to the PDF table content for enhanced structure and height consistency.
This commit is contained in:
yoosangwook 2025-06-02 15:42:27 +09:00
parent 9d89ceadc0
commit 5da4417bb5
2 changed files with 4 additions and 1 deletions

View File

@ -124,7 +124,7 @@ export default function SuitableDownloadPdf() {
</div>
))}
</div>
<div className="pdf-intro-foot-date mt10">{createTime}</div>
<div className="pdf-intro-foot-date">{createTime}</div>
</div>
</div>
</>

View File

@ -91,6 +91,9 @@
}
.pdf-table-content{
display: flex;
flex-direction: column;
height: 1050px;
padding: 20px;
margin-bottom: 50px;
}