Skip to content

Commit 3d96e8c

Browse files
author
Lau Skeeter
committed
fixezs
1 parent 0a846d5 commit 3d96e8c

File tree

3 files changed

+6
-20
lines changed

3 files changed

+6
-20
lines changed

speakers.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,12 @@ module.exports = [
22
{
33
filename: 'kate',
44
name: 'Kate Beard',
5-
talk: ' typescript made enjoyable',
65
photo:
76
'https://pbs.twimg.com/profile_images/1123259650126774272/KOE88EYU_reasonably_small.jpg',
87
},
98
{
109
filename: 'sara',
1110
name: 'Sara Vieira',
12-
talk: 'No. typescript will NEVER be enjoyable',
1311
photo:
1412
'https://pbs.twimg.com/profile_images/1092069028154216449/M-yDW4aY_400x400.jpg',
1513
},

src/App.css

Lines changed: 4 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -40,14 +40,16 @@
4040
.canvas main {
4141
color: #fff;
4242
display: flex;
43+
display: flex;
44+
align-items: center;
4345
font-size: 3em;
4446
max-width: 55%;
4547
}
4648

4749
.canvas[data-video] main {
4850
position: absolute;
4951
left: 75%;
50-
top: 45%;
52+
top: 48%;
5153
}
5254

5355
.canvas[data-video] main h2 {
@@ -66,19 +68,10 @@
6668
}
6769

6870
.canvas h2 {
69-
font-family: 'Neutra Text';
70-
margin-top: 0.75em;
71-
margin-bottom: 0.125em;
72-
font-size: 2em;
73-
}
74-
75-
.canvas h3 {
7671
font-family: 'Roboto Mono';
7772
font-weight: 400;
78-
color: #e6e2ff;
79-
font-size: 1.15em;
73+
font-size: 1.5em;
8074
}
81-
8275
.canvas .fly {
8376
position: absolute;
8477
bottom: 13%;

src/App.js

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,7 @@ const PrerollScreen = ({ photo, name, talk }) => {
88
<div className="bow" />
99
<main>
1010
<img alt="" src={photo} />
11-
<div>
12-
<h2>{name}</h2>
13-
<h3>{talk}</h3>
14-
</div>
11+
<h2>{name}</h2>
1512
</main>
1613
<img src={fly} alt="queerJS" className="fly" />
1714
</div>
@@ -25,9 +22,7 @@ const VideoScreen = ({ name }) => {
2522
<x-video />
2623
<x-speaker-video />
2724
<main>
28-
<div>
29-
<h2>{name}</h2>
30-
</div>
25+
<h2>{name}</h2>
3126
</main>
3227
<img src={fly} alt="queerJS" className="fly" />
3328
</div>

0 commit comments

Comments
 (0)