From 1d78344d09b31e3d32d8dd5a15e223040c38ed2a Mon Sep 17 00:00:00 2001 From: Hykilpikonna Date: Mon, 23 Dec 2019 09:44:42 -0500 Subject: [PATCH] [+] Generate footer style --- src/App.vue | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/src/App.vue b/src/App.vue index 0a65ebe..1d9499c 100644 --- a/src/App.vue +++ b/src/App.vue @@ -5,7 +5,7 @@
{{config.title.sub}}
- @@ -93,6 +93,17 @@ 'font-family': config.title.font }; } + + /** + * Style for footer + */ + get footerStyle() + { + return { + height: config.footer.height + 'vh', + background: config.footer.background + } + } }