diff --git a/frontend/src/App.vue b/frontend/src/App.vue index 81e85f6..f4ca3f9 100644 --- a/frontend/src/App.vue +++ b/frontend/src/App.vue @@ -1,5 +1,6 @@ diff --git a/frontend/src/components/Footer.vue b/frontend/src/components/Footer.vue new file mode 100644 index 0000000..46ebe49 --- /dev/null +++ b/frontend/src/components/Footer.vue @@ -0,0 +1,7 @@ + diff --git a/frontend/src/style/_footer.scss b/frontend/src/style/_footer.scss new file mode 100644 index 0000000..d43d620 --- /dev/null +++ b/frontend/src/style/_footer.scss @@ -0,0 +1,9 @@ +footer { + margin: 2em 0 1em; + + p { + margin: 0; + text-align: center; + font-size: .85em; + } +} diff --git a/frontend/src/style/main.scss b/frontend/src/style/main.scss index e91775b..90a8a43 100644 --- a/frontend/src/style/main.scss +++ b/frontend/src/style/main.scss @@ -72,4 +72,5 @@ tr.index-item:hover { // Components @import "root"; @import "nav"; +@import "footer"; @import "pkginfo";