summaryrefslogtreecommitdiff
path: root/src/views/News.vue
diff options
context:
space:
mode:
authorgumi <git@gumi.ca>2019-07-25 21:14:09 -0400
committergumi <git@gumi.ca>2019-07-25 21:14:09 -0400
commit310c70c0a5b11a95ed85ae63e4fb2cf1d3441880 (patch)
treed551efe63eae4469e0dbefb0ca11496a55d7a094 /src/views/News.vue
parent0f01df5c4d4a75bd75cb9de2d55e8e254b01c3c7 (diff)
downloadwebsite-310c70c0a5b11a95ed85ae63e4fb2cf1d3441880.tar.gz
website-310c70c0a5b11a95ed85ae63e4fb2cf1d3441880.tar.bz2
website-310c70c0a5b11a95ed85ae63e4fb2cf1d3441880.tar.xz
website-310c70c0a5b11a95ed85ae63e4fb2cf1d3441880.zip
further improve the readability of News
Diffstat (limited to 'src/views/News.vue')
-rw-r--r--src/views/News.vue10
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";