Skip to content

Commit

Permalink
Fix CV print
Browse files Browse the repository at this point in the history
  • Loading branch information
adamplesnik committed Jan 27, 2025
1 parent af6c8c8 commit c7a5030
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/content/CvPrint.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,19 +24,19 @@ const CvPrint = () => {
UI designer
</Heading>
</div>
<div className="flex flex-col items-stretch gap-16 lg:flex-row lg:gap-32">
<div className="flex flex-col items-stretch gap-16 lg:flex-row lg:gap-32 print:flex-row print:gap-32">
<div className="flex flex-1 flex-col gap-5">
<Paragraph className="mb-6 mt-12">{catchPhraseCV}</Paragraph>
<CvTechSkills />
<div className="hidden flex-1 items-end lg:flex">
<div className="hidden flex-1 items-end lg:flex print:flex">
<Contact />
</div>
</div>
<div className="mt-12 flex flex-1 flex-col gap-[3.7rem] leading-normal">
<CvTimeline print />
</div>
</div>
<div className="flex lg:hidden">
<div className="flex lg:hidden print:hidden">
<Contact />
</div>
</div>
Expand Down

0 comments on commit c7a5030

Please sign in to comment.