Skip to content

Commit

Permalink
✨ Finetune printable page
Browse files Browse the repository at this point in the history
  • Loading branch information
dohyun-ko committed Sep 14, 2024
1 parent 851e284 commit 3ddf8c0
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/components/StylessA.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const StylessA = ({ href, children, hasIcon = true }: StylessAProps) => {
>
{children}

{href && hasIcon && <img src={LinkIcon} />}
{href && hasIcon && <img src={LinkIcon} width={16} />}
</a>
);
};
Expand Down
4 changes: 2 additions & 2 deletions src/pages/home/printable/PrintablePage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const PrintablePage = () => {

<ExperienceSection />

<Spacer height={"30px"} />
<Spacer height={"50px"} />

<SkillSection />

Expand All @@ -28,7 +28,7 @@ const PrintablePage = () => {

<PublicationSection />

<Spacer height={"30px"} />
<Spacer height={"40px"} />

<SideProjectSection />
</Content>
Expand Down
8 changes: 5 additions & 3 deletions src/pages/home/printable/sections/ExperienceSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,11 @@ const ExperienceSection = ({}: ExperienceSectionProps) => {
const { t } = useTranslation();

const organizations = [
...(t("experience.experiences", {
returnObjects: true,
}) as Organization[]),
...(
t("experience.experiences", {
returnObjects: true,
}) as Organization[]
).toReversed(),
...(t("current.organizations", {
returnObjects: true,
}) as Organization[]),
Expand Down

0 comments on commit 3ddf8c0

Please sign in to comment.