diff options
Diffstat (limited to 'src/views/News.vue')
-rw-r--r-- | src/views/News.vue | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/views/News.vue b/src/views/News.vue index 24aa689..58f3e4c 100644 --- a/src/views/News.vue +++ b/src/views/News.vue @@ -1,10 +1,18 @@ <template> <main class="main-content"> - <h1>News</h1> + <h1>News archive</h1> <News count="Infinity"/> </main> </template> +<style scoped> +.main-content { + & h1 { + margin-bottom: 0; + } +} +</style> + <script lang="ts"> import { Component, Vue } from "vue-property-decorator"; import News from "@/components/News.vue"; |