Skip to content

Commit 7f6a441

Browse files
committed
Update bio
Fix issue with navigating back to About from Socials
1 parent 688ecd9 commit 7f6a441

5 files changed

Lines changed: 31 additions & 18 deletions

File tree

src/components/Handheld/Components/Screen/Screen.scss

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,8 @@
109109
}
110110
}
111111
&__body {
112+
hyphens: auto;
113+
margin-bottom: 16px;
112114
&__section {
113115
margin-bottom: 16px;
114116
h2 {

src/components/Handheld/Device/Device.js

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -103,18 +103,19 @@ function Device({ classes }) {
103103
setPanelSet(mI);
104104
setShowMenu(false);
105105
setPanel(0);
106-
}
107-
// handle a button behavior based on panel set
108-
switch (panelSet) {
109-
case 1: {
110-
const anchors = document
111-
.getElementsByClassName('panel-social')[0]
112-
.getElementsByTagName('a');
113-
anchors[socialPanelIndex].click();
114-
break;
106+
} else {
107+
// handle a button behavior based on panel set
108+
switch (panelSet) {
109+
case 1: {
110+
const anchors = document
111+
.getElementsByClassName('panel-social')[0]
112+
.getElementsByTagName('a');
113+
anchors[socialPanelIndex].click();
114+
break;
115+
}
116+
default:
117+
break;
115118
}
116-
default:
117-
break;
118119
}
119120
};
120121

src/components/Handheld/Panels/BioPanel.js

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,21 @@ const BioPanel = forwardRef(({ image, scrollDirection }, ref) => {
2020
<img src={image} alt="me" />
2121
</div>
2222
<div className="handheld-screen__interface__content__body flex flex-col">
23-
<div className="handheld-screen__content__body flex flex-col text-left">
23+
<div className="handheld-screen__content__body flex flex-col text-left gap-2 hyphens">
24+
<p>Hey! </p>
2425
<p>
25-
In all areas of the stack, Eros is well equipped to address any challenge, whether it be
26-
deve&shy;loping elegant, responsive websites, creating intuitive mobile application
27-
experien&shy;ces, or building robust, efficient backend solutions.
26+
I&apos;m Eros, and I like making physical and digital games, and websites like this one!{' '}
2827
</p>
28+
<p>I earned a Bachelor of Computer Science from Carleton U. (Ottawa) in 2021. </p>
29+
<p>
30+
I&apos;m currently employed at a Else Labs (an IoT startup) doing fullstack software
31+
development.
32+
</p>
33+
<p>
34+
I also like comics, music, film, rock climbing, karate, and of course, playing physical
35+
and digital games.
36+
</p>
37+
<p>Feel free to connect through my social platforms. [press start!]</p>
2938
</div>
3039
</div>
3140
<div className="handheld-screen__interface__content__page flex mt-auto">

src/styles/font-size.scss

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ $h4-font-size-desktop: 36px;
1414
$h4-font-size-tablet: 28px;
1515
$h4-font-size-mobile: 18px;
1616

17-
$p-font-size-desktop: 16px;
18-
$p-font-size-tablet: 16px;
19-
$p-font-size-mobile: 16px;
17+
$p-font-size-desktop: 18px;
18+
$p-font-size-tablet: 18px;
19+
$p-font-size-mobile: 18px;

src/styles/mixins/typography.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@
7474
@mixin body {
7575
font-size: $p-font-size-desktop;
7676
line-height: $p-font-size-desktop * 2;
77+
letter-spacing: 0.25em;
7778
font-weight: normal;
7879
display: flex;
7980
align-items: center;

0 commit comments

Comments
 (0)