From f4df50ffc3f299b6193e70eaddda2bd01bbb1b63 Mon Sep 17 00:00:00 2001 From: sinsong Date: Mon, 3 Jul 2023 23:23:51 +0800 Subject: [PATCH] add footer note --- frontend/src/App.vue | 2 ++ frontend/src/components/Footer.vue | 7 +++++++ frontend/src/style/_footer.scss | 9 +++++++++ frontend/src/style/main.scss | 1 + 4 files changed, 19 insertions(+) create mode 100644 frontend/src/components/Footer.vue create mode 100644 frontend/src/style/_footer.scss 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";