From f8d355c7738a52305ab9fff719019d0faffe0101 Mon Sep 17 00:00:00 2001 From: Helianthella Date: Tue, 22 Dec 2020 22:22:08 -0500 Subject: add a link to the RSS feed on the news page --- src/views/NewsArchive.vue | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/src/views/NewsArchive.vue b/src/views/NewsArchive.vue index c34e334..c00810a 100644 --- a/src/views/NewsArchive.vue +++ b/src/views/NewsArchive.vue @@ -2,6 +2,7 @@ @@ -10,6 +11,26 @@ .main-content h1 { margin-bottom: 0; } +.main-content .feed { + float: right; + margin-top: -2.5em; + text-decoration: none; + color: inherit; + + & > svg { + width: 1.8em; + height: 1.8em; + border: solid 1px inherit; + border-radius: 30%; + opacity: .6; + + &:hover { + background: orange; + color: #fff; + opacity: 1; + } + } +}