Make the footer not fixed
This commit is contained in:
parent
1b37a96adf
commit
842a8bb6a0
1 changed files with 13 additions and 15 deletions
|
@ -117,13 +117,17 @@
|
||||||
</v-list-tile>
|
</v-list-tile>
|
||||||
</v-list>
|
</v-list>
|
||||||
</v-navigation-drawer>
|
</v-navigation-drawer>
|
||||||
<v-footer fixed app class="text-xs-center">
|
<v-footer class="text-xs-center">
|
||||||
<v-flex>
|
<v-flex class="text-xs-left">
|
||||||
<em>
|
<v-card-text class="py-2 text-center">
|
||||||
Website made with
|
Website designed by
|
||||||
<v-icon color="red" class="mx-1">fas fa-heart</v-icon>by
|
<a target="_blank" href="https://twitter.com/Lordmau5">Lordmau5</a>
|
||||||
<a target="_blank" href="https://twitter.com/Lordmau5">Lordmau5</a>
|
</v-card-text>
|
||||||
</em>
|
</v-flex>
|
||||||
|
<v-flex class="text-xs-right">
|
||||||
|
<v-card-text class="py-2 text-center">
|
||||||
|
{{this.$static.metadata.siteAuthor}} © {{ new Date().getFullYear() }}
|
||||||
|
</v-card-text>
|
||||||
</v-flex>
|
</v-flex>
|
||||||
</v-footer>
|
</v-footer>
|
||||||
</v-app>
|
</v-app>
|
||||||
|
@ -132,14 +136,8 @@
|
||||||
<static-query>
|
<static-query>
|
||||||
query {
|
query {
|
||||||
metadata {
|
metadata {
|
||||||
siteName
|
siteAuthor
|
||||||
}
|
}
|
||||||
}
|
|
||||||
</static-query>
|
|
||||||
|
|
||||||
|
|
||||||
<static-query>
|
|
||||||
query {
|
|
||||||
socialNavbarElements: allSocialNavbarElements(order: ASC) {
|
socialNavbarElements: allSocialNavbarElements(order: ASC) {
|
||||||
edges {
|
edges {
|
||||||
node {
|
node {
|
||||||
|
@ -169,9 +167,9 @@ a {
|
||||||
export default {
|
export default {
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
title: "Ryujinx - Nintendo Switch Emulator",
|
||||||
dark: process.isClient && localStorage.dark_mode === "true",
|
dark: process.isClient && localStorage.dark_mode === "true",
|
||||||
drawer: false,
|
drawer: false,
|
||||||
title: "Ryujinx - Switch Emulator"
|
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
|
Loading…
Reference in a new issue