Skip to content

Commit 3ddf8c0

Browse files
committed
✨ Finetune printable page
1 parent 851e284 commit 3ddf8c0

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

src/components/StylessA.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const StylessA = ({ href, children, hasIcon = true }: StylessAProps) => {
2020
>
2121
{children}
2222

23-
{href && hasIcon && <img src={LinkIcon} />}
23+
{href && hasIcon && <img src={LinkIcon} width={16} />}
2424
</a>
2525
);
2626
};

src/pages/home/printable/PrintablePage.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const PrintablePage = () => {
1616

1717
<ExperienceSection />
1818

19-
<Spacer height={"30px"} />
19+
<Spacer height={"50px"} />
2020

2121
<SkillSection />
2222

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

2929
<PublicationSection />
3030

31-
<Spacer height={"30px"} />
31+
<Spacer height={"40px"} />
3232

3333
<SideProjectSection />
3434
</Content>

src/pages/home/printable/sections/ExperienceSection.tsx

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,11 @@ const ExperienceSection = ({}: ExperienceSectionProps) => {
1010
const { t } = useTranslation();
1111

1212
const organizations = [
13-
...(t("experience.experiences", {
14-
returnObjects: true,
15-
}) as Organization[]),
13+
...(
14+
t("experience.experiences", {
15+
returnObjects: true,
16+
}) as Organization[]
17+
).toReversed(),
1618
...(t("current.organizations", {
1719
returnObjects: true,
1820
}) as Organization[]),

0 commit comments

Comments
 (0)