Skip to content

Commit 2099462

Browse files
committed
resolve PR changes
1 parent 8f0c744 commit 2099462

3 files changed

Lines changed: 10 additions & 12 deletions

File tree

.editorconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ indent_style = space
55
indent_size = 4
66
charset = utf-8
77
trim_trailing_whitespace = false
8-
insert_final_newline = true
8+
insert_final_newline = true

src/index.scss

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900;1000&display=swap');
22

33
$blue: #465491;
4-
$white: #fff;
54
/*
65
tablet & mobile have the column layout
76
tablet has fixed widths and font sizes
@@ -65,7 +64,7 @@ html, body, #root, #app, .full-height {
6564
text-align: center;
6665

6766
background-color: $blue;
68-
color: $white;
67+
color: white;
6968
}
7069
.desktop-banner span {
7170
font-weight: 400;
@@ -131,21 +130,21 @@ html, body, #root, #app, .full-height {
131130
font-size: 12px;
132131
font-weight: 400;
133132

134-
color: $white;
133+
color: white;
135134
background-color: $blue;
136135

137136
ul li {
138137
padding: 25px 15px;
139138
a {
140-
color: $white;
139+
color: white;
141140
border-bottom-style: solid;
142-
border-color: transparentize($white, 1);
141+
border-color: transparentize(white, 1);
143142

144143
&:hover {
145-
border-color: transparentize($white, 1);
144+
border-color: transparentize(white, 1);
146145
}
147146
&:active {
148-
border-color: transparentize($white, 0);
147+
border-color: transparentize(white, 0);
149148
}
150149
}
151150
}
@@ -159,17 +158,18 @@ html, body, #root, #app, .full-height {
159158
margin-bottom: unquote("max(0px, 10vh - 40px, 0px, 30vh - 190px)");
160159
}
161160
}
162-
163161
.section {
164162
width: 100%;
165163
max-width: 1100px;
166164
text-align: center;
167165
margin: auto;
166+
168167

169168
@include tablet {
170169
flex-direction: column;
171170
}
172171
}
172+
173173
.right-half {
174174
flex: 50%;
175175
}
@@ -284,7 +284,7 @@ lines of text may be wider than they appear
284284
border-color: $blue;
285285
border-radius: 15px;
286286

287-
background-color: $white;
287+
background-color: white;
288288
background-image: url(./input-arrow.svg);
289289
background-repeat: no-repeat;
290290
background-position: 3.75px;
@@ -310,7 +310,6 @@ lines of text may be wider than they appear
310310
}
311311

312312
.mobile-banner {
313-
display: none;
314313
@include tablet {
315314
display: inline-block;
316315
margin-top: 1vh;

src/preregister.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ class PreRegister extends React.Component {
1818
title={desktopNotice}
1919
content={noticeContent}
2020
/>
21-
2221
<div className="section flex-container">
2322
<div className="left-half">
2423
<div id="hackathon-name">

0 commit comments

Comments
 (0)