diff --git a/app/app.js b/app/app.js index 471d525..8e95cbd 100644 --- a/app/app.js +++ b/app/app.js @@ -1,11 +1,15 @@ import Vue from 'vue'; import PasswordGenerator from './components/password-generator.vue'; import BootstrapHr from './components/bootstrap-hr.vue'; +import LesspassFeatures from './components/lesspass-features.vue'; +import Footer from './components/footer.vue'; new Vue({ el: 'body', components: { passwordGenerator: PasswordGenerator, + lesspassFeatures: LesspassFeatures, + lesspassFooter: Footer, bootstrapHr: BootstrapHr } }); \ No newline at end of file diff --git a/app/components/footer.vue b/app/components/footer.vue new file mode 100644 index 0000000..b0ed2f9 --- /dev/null +++ b/app/components/footer.vue @@ -0,0 +1,15 @@ + + \ No newline at end of file diff --git a/app/components/lesspass-features.vue b/app/components/lesspass-features.vue new file mode 100644 index 0000000..a6b1525 --- /dev/null +++ b/app/components/lesspass-features.vue @@ -0,0 +1,21 @@ + + \ No newline at end of file diff --git a/static/css/styles.scss b/static/css/styles.scss index 14eec80..2cc3d35 100644 --- a/static/css/styles.scss +++ b/static/css/styles.scss @@ -6,7 +6,6 @@ body { line-height: 1.5; color: #CFD2DA; background-color: #252830; - padding-bottom: 2em; } #header { diff --git a/static/index.html b/static/index.html index 4bcc970..ee1f155 100644 --- a/static/index.html +++ b/static/index.html @@ -40,6 +40,8 @@ + + \ No newline at end of file