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 footer responsive #2404

Merged
merged 1 commit into from
Mar 12, 2024
Merged
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
17 changes: 13 additions & 4 deletions packages/playground/src/components/main_footer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<v-footer class="py-5 mainfooter border mt-5">
<v-container>
<v-row justify="center" no-gutters>
<v-col class="px-4 pr-10" cols="12" md="4" sm="12">
<v-col class="px-4" cols="12" md="4">
<v-img
:src="`${
theme.name.value === AppThemeSelection.light
Expand Down Expand Up @@ -31,7 +31,7 @@
></a>
</div>
</v-col>
<v-col class="" cols="4" md="2">
<v-col class="mb-2" cols="12" sm="3" md="2">
<p class="text-subtitle-1 footer_header" color="secondary">Take Action</p>
<div>
<a
Expand All @@ -56,7 +56,7 @@
>
</div>
</v-col>
<v-col class="mx-3" cols="4" md="2">
<v-col class="mx-3 mb-3" cols="12" sm="3" md="2">
<p color="primary" class="text-subtitle-1 footer_header">About Us</p>
<div>
<a
Expand All @@ -79,7 +79,7 @@
</div>
</v-col>

<v-col class="mx-3" cols="2">
<v-col class="mx-3" cols="12" sm="3" md="2">
<p class="text-subtitle-1 footer_header" color="secondary">Contact</p>
<div>
<a href="https://t.me/threefold" class="app-link text-subtitle-2" target="_blank">Main Chat</a>
Expand Down Expand Up @@ -144,4 +144,13 @@ export default {
color: rgb(var(--v-footer-color-header)) !important;
font-weight: 500;
}

@media only screen and (max-width: 992px) {
.v-footer {
text-align: center !important;
}
.v-img {
margin: auto;
}
}
</style>
Loading