Skip to content

Commit 92ac762

Browse files
committed
add mid way check in form
1 parent 18277da commit 92ac762

File tree

2 files changed

+15
-5
lines changed

2 files changed

+15
-5
lines changed

src/app/views/home/Home.jsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import FAQs from "src/app/components/faqs/FAQs";
22
import Sponsors from "src/app/components/sponsors/Sponsors";
33
import Partners from "src/app/components/partners/Partners";
44
import Speakers from "src/app/components/speakers/speakers";
5-
import { Footer } from "src/app/components";
5+
import { Footer, VenusButton } from "src/app/components";
66

77
import vh_title from "/assets/images/titles/venushacks.svg";
88
import about_title from "/assets/images/titles/vh-about.svg";
@@ -27,6 +27,10 @@ const Home = () => {
2727
/>
2828
<h4 id="date">{VH_DATE}</h4>
2929
<p id="tagline">UC Irvine&apos;s largest women-centric hackathon</p>
30+
<VenusButton
31+
url="https://docs.google.com/forms/d/e/1FAIpQLSdObzMrHpTjjcc5DhdXmuX8v485aDhsCqBRxCV3R66316htcg/viewform?usp=sharing"
32+
text="Mid-Way Check In"
33+
/>
3034
</div>
3135
<div id="astronaut-animation">
3236
{/* These assets are a background of a div instead of imgs to prevent

src/app/views/home/Home.scss

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -69,18 +69,18 @@ body {
6969
width: 45%;
7070
justify-content: space-between;
7171
max-width: 600px;
72-
transform: translateY(-550px);
72+
transform: translateY(-600px);
7373

7474
@media screen and (max-width: $break-medium) {
7575
width: 100%;
7676
max-width: 325px;
77-
transform: translateY(-400px);
77+
transform: translateY(-475px);
7878
}
7979

8080
@media screen and (max-width: $break-small) {
8181
width: 100%;
8282
max-width: 325px;
83-
transform: translateY(-250px);
83+
transform: translateY(-325px);
8484
}
8585

8686
@keyframes floatBoba {
@@ -257,6 +257,7 @@ body {
257257
border-radius: 50px;
258258
border: none;
259259
text-decoration: none;
260+
transform: translateY(-190px);
260261

261262
@media screen and (max-width: $break-medium) {
262263
font-size: 16px;
@@ -265,12 +266,17 @@ body {
265266
@media screen and (max-width: $break-small) {
266267
margin-right: 2px;
267268
margin-left: 2px;
269+
transform: translateY(-20px);
268270
}
269271
}
270272

271273
.venus-btn:hover {
272274
transition: all 0.2s ease;
273-
transform: scale(1.08);
275+
transform: translateY(-190px) scale(1.08);
276+
277+
@media screen and (max-width: $break-small) {
278+
transform: translateY(-20px) scale(1.08);
279+
}
274280
}
275281
} // END #hero-right
276282
} // END HERO

0 commit comments

Comments
 (0)