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

fix #28

Closed
wants to merge 2 commits into from
Closed

fix #28

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
10 changes: 9 additions & 1 deletion frontend/pages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ useHead({
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 24 24"><path fill="currentColor" d="M12 6.5A2.5 2.5 0 0 1 14.5 9a2.5 2.5 0 0 1-2.5 2.5A2.5 2.5 0 0 1 9.5 9A2.5 2.5 0 0 1 12 6.5M12 2a7 7 0 0 1 7 7c0 5.25-7 13-7 13S5 14.25 5 9a7 7 0 0 1 7-7m0 2a5 5 0 0 0-5 5c0 1 0 3 5 9.71C17 12 17 10 17 9a5 5 0 0 0-5-5Z"/></svg>
<span>Depok, Indonesia</span>
</h3>
<Btn :isLink="true" to="register" class="mt-15 text-center" size="xl">Save my spot!</Btn>
<Btn :isLink="true" to="register" class="mt-5 lg:mt-15 text-center btn-save-my-spot" size="xl">Save my spot!</Btn>
</div>
<div class="card-right flex flex-grow-1 justify-end items-center">
<img src="@/assets/images/logo-white.png" alt="TeknumConf logo" class="w-100 hidden lg:block rounded-full">
Expand Down Expand Up @@ -61,6 +61,14 @@ useHead({
outline: 2px solid rgba(255, 255, 255, 0.245);
transition: all .3s;
}


@media screen and (max-width: 768px) {
.card-left h1 {
font-size: 32px;
}
}

.hero-card:hover {
background-color: rgba(255, 255, 255, 0.115);
outline: 2px solid white;
Expand Down
Loading