[+] Generate footer style

This commit is contained in:
Hykilpikonna
2019-12-23 09:44:42 -05:00
parent 747304510e
commit 1d78344d09
+12 -1
View File
@@ -5,7 +5,7 @@
<div id="title-sub">{{config.title.sub}}</div>
</div>
<div id="footer">
<div id="footer" :style="footerStyle">
</div>
</div>
@@ -93,6 +93,17 @@
'font-family': config.title.font
};
}
/**
* Style for footer
*/
get footerStyle()
{
return {
height: config.footer.height + 'vh',
background: config.footer.background
}
}
}
</script>