|
@@ -13,7 +13,7 @@
|
|
/></a>
|
|
/></a>
|
|
<div id="footer-links">
|
|
<div id="footer-links">
|
|
<a
|
|
<a
|
|
- :href="`${this.socialLinks.github}`"
|
|
|
|
|
|
+ :href="`${this.github}`"
|
|
target="_blank"
|
|
target="_blank"
|
|
title="GitHub Repository"
|
|
title="GitHub Repository"
|
|
>
|
|
>
|
|
@@ -36,17 +36,12 @@
|
|
export default {
|
|
export default {
|
|
data() {
|
|
data() {
|
|
return {
|
|
return {
|
|
- socialLinks: {
|
|
|
|
- github: "",
|
|
|
|
- twitter: "",
|
|
|
|
- facebook: "",
|
|
|
|
- discord: ""
|
|
|
|
- }
|
|
|
|
|
|
+ github: "#"
|
|
};
|
|
};
|
|
},
|
|
},
|
|
mounted() {
|
|
mounted() {
|
|
- lofig.get("siteSettings.socialLinks").then(socialLinks => {
|
|
|
|
- this.socialLinks = socialLinks;
|
|
|
|
|
|
+ lofig.get("siteSettings.github").then(github => {
|
|
|
|
+ this.github = github;
|
|
});
|
|
});
|
|
}
|
|
}
|
|
};
|
|
};
|
|
@@ -70,7 +65,7 @@ export default {
|
|
.footer-content {
|
|
.footer-content {
|
|
display: flex;
|
|
display: flex;
|
|
align-items: center;
|
|
align-items: center;
|
|
- flex-direction: column-reverse;
|
|
|
|
|
|
+ flex-direction: column;
|
|
& > * {
|
|
& > * {
|
|
margin: 5px 0;
|
|
margin: 5px 0;
|
|
}
|
|
}
|
|
@@ -91,9 +86,11 @@ export default {
|
|
margin-left: auto;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
margin-right: auto;
|
|
width: 200px;
|
|
width: 200px;
|
|
|
|
+ order: 1;
|
|
}
|
|
}
|
|
|
|
|
|
#footer-links {
|
|
#footer-links {
|
|
|
|
+ order: 2;
|
|
:not(:last-child) {
|
|
:not(:last-child) {
|
|
border-right: solid 1px $primary-color;
|
|
border-right: solid 1px $primary-color;
|
|
}
|
|
}
|
|
@@ -117,6 +114,10 @@ export default {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ #footer-copyright {
|
|
|
|
+ order: 3;
|
|
|
|
+ }
|
|
}
|
|
}
|
|
|
|
|
|
@media only screen and (min-width: 992px) {
|
|
@media only screen and (min-width: 992px) {
|