Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make CTA clickable #460

Merged
merged 1 commit into from
Jul 2, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions frontend/components/Games.vue
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ section {
position: relative;
width: 100%;
box-sizing: border-box;
margin-top: -80px;
}

.bg {
Expand Down Expand Up @@ -146,11 +145,6 @@ section {
cursor: not-allowed;
}

@media only screen and (max-width: 1600px) {
section {
margin-top: -160px;
}
}
@media only screen and (max-width: 1200px) {
.bg {
width: inherit;
Expand Down
3 changes: 2 additions & 1 deletion frontend/pages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<v-row align="center" justify="center" class="logo">
<img src="/img/logo/logo.png" alt="Logo" width="55%" class="mt-15" />
</v-row>
<v-row align="end" justify="center" class="mt-7 mb-14">
<v-row justify="center" class="mt-7 mb-14">
<v-btn-toggle rounded v-model="undefined" background-color="transparent">
<v-btn class="hero-btn" to="/division-boosting">Get Boosted</v-btn>
<v-btn class="hero-btn" to="/coaching">Get Coached</v-btn>
Expand All @@ -28,6 +28,7 @@
width: 100%;
filter: contrast(70%);
z-index: 1;
opacity: 0.4;
}
.container {
position: relative;
Expand Down
Loading