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

GIB-612 fix styling of the footer #128

Merged
merged 1 commit into from
May 18, 2022
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
42 changes: 21 additions & 21 deletions src/components/layouts/Footer.vue
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<template>
<v-footer padless color="white" class="footer-rsk d-flex justify-center">
<v-col cols="11" class="pb-0">
<v-row justify="center" align="start" class="mx-0 py-md-0 py-xl-6">
<v-col>
<v-row class="footer-logo mx-0" align="end">
<span class="pb-2">Built by</span>
<v-col class="pl-0 pb-2">
<footer class="footer-rsk mb-5">
<div class="container">
<div class="row align-items-center">
<div class="col ml-0">
<div class="row footer-logo mx-0">
<span>Built by</span>
<div class="col pl-0">
<v-img
position="center left"
src="@/assets/logo-iov.svg"
Expand All @@ -14,21 +14,21 @@
contain
class="rsk-main-logo"
/>
</v-col>
</v-row>
</div>
</div>
<p>Copyright © 2021 IOV Labs All rights reserved</p>
</v-col>
<v-col cols="7" class="pt-4">
<v-row justify="center" class="mx-0 footer-links">
</div>
<div class="col-7">
<div class="row justify-content-center mx-0 footer-links h-100">
<a href="https://www.iovlabs.org/" target="_blank"> About IOV Labs </a>
<a href="https://open-rsk-dev.slack.com/messages/support">Help</a>
<a href="https://www.rsk.co/terms-conditions" target="_blank">
Terms &amp; Conditions
</a>
</v-row>
</v-col>
<v-col class="pt-1">
<v-row justify="end" class="mx-0 footer-icons">
</div>
</div>
<div class="col">
<div class="row justify-content-end align-items-baseline mx-0 footer-icons">
<a href="https://twitter.com/rsksmart" target="_blank">
<v-icon>mdi-twitter</v-icon>
</a>
Expand All @@ -38,11 +38,11 @@
<a href="https://open-rsk-dev.slack.com/messages/support" target="_blank">
<v-icon>mdi-slack</v-icon>
</a>
</v-row>
</v-col>
</v-row>
</v-col>
</v-footer>
</div>
</div>
</div>
</div>
</footer>
</template>

<script>
Expand Down
4 changes: 2 additions & 2 deletions src/styles/_footer.scss
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,10 @@
p {
font-family: 'Objective', 'Quicksand', sans-serif;;
font-size: 6px;
line-height: 24px;
line-height: 8px;
color: black !important;
opacity: 0.5;
margin: 0;
margin: 4px 0px 0px 0px;
}

.footer-logo {
Expand Down