Skip to content

Commit d1d5be7

Browse files
committed
Fix styling on about page
1 parent 9b5809f commit d1d5be7

File tree

1 file changed

+42
-20
lines changed

1 file changed

+42
-20
lines changed

src/pages/about.js

Lines changed: 42 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -8,55 +8,77 @@ export default function About() {
88
return (
99
<Layout>
1010
<img src={banner} alt="Me standing on stage giving a talk" />
11-
<h2 style={{ fontSize: '2em' }}>Kylee Tilley</h2>
12-
13-
<section>
11+
<div style={{ float: 'left' }}>
1412
<div
1513
style={{
16-
float: 'left',
17-
padding: '1em',
18-
width: '10em',
1914
marginRight: '1em',
2015
}}
2116
>
2217
<img
2318
src={me}
2419
style={{
2520
borderRadius: '50%',
26-
minWidth: '7em',
27-
width: '7em',
28-
height: '7em',
21+
minWidth: '14em',
22+
width: '14em',
23+
height: '14em',
2924
}}
3025
alt=""
3126
/>
27+
</div>
3228

33-
<ul>
29+
<div>
30+
<h2 style={{ fontSize: '2em' }}>Kylee Tilley</h2>
31+
32+
<ul
33+
style={{
34+
listStyleType: 'none',
35+
padding: '0',
36+
margin: '0',
37+
}}
38+
>
3439
<li>
35-
<OutboundLink href="https://github.com/testingrequired">
36-
github.com/testingrequired
40+
<OutboundLink
41+
href="https://github.com/testingrequired"
42+
style={{ textDecoration: 'none' }}
43+
>
44+
🧑‍💻 github.com/testingrequired
3745
</OutboundLink>
3846
</li>
3947

4048
<li>
41-
<OutboundLink href="https://www.linkedin.com/in/kyleetilley/">
42-
linkedin.com/in/kyleetilley
49+
<OutboundLink
50+
href="https://www.linkedin.com/in/kyleetilley/"
51+
style={{ textDecoration: 'none' }}
52+
>
53+
👔 linkedin.com/in/kyleetilley
4354
</OutboundLink>
4455
</li>
4556

4657
<li>
47-
<OutboundLink href="https://bsky.app/profile/testingrequired.com">
58+
<OutboundLink
59+
href="https://bsky.app/profile/testingrequired.com"
60+
style={{ textDecoration: 'none' }}
61+
>
4862
🦋 @testingrequired.com
4963
</OutboundLink>
5064
</li>
5165
</ul>
5266
</div>
67+
</div>
5368

54-
<div style={{ fontSize: '1.15em' }}>
69+
<section>
70+
<div
71+
style={{
72+
fontSize: '1.1em',
73+
textJustify: 'inter-character',
74+
textAlign: 'justify',
75+
}}
76+
>
5577
<p>
56-
Hi there! I’m Kylee Tilley, a software engineer with over 10 years
57-
of professional experience. I started as a self-taught coder, making
58-
webpages (Geocities 😍) and writing small utilities to make my IT
59-
help desk job easier.
78+
Hi there! I'm a software engineer with over 10 years of professional
79+
experience. I started as a self-taught coder, making webpages
80+
(Geocities 😍) and writing small utilities to make my IT help desk
81+
job easier.
6082
</p>
6183

6284
<p>

0 commit comments

Comments
 (0)