diff --git a/OliverBooth/Pages/Blog/Article.cshtml b/OliverBooth/Pages/Blog/Article.cshtml index 887d184..9bb648c 100644 --- a/OliverBooth/Pages/Blog/Article.cshtml +++ b/OliverBooth/Pages/Blog/Article.cshtml @@ -80,7 +80,7 @@ 0 Comments }

-
+
@foreach (string tag in post.Tags) { @tag diff --git a/src/scss/app.scss b/src/scss/app.scss index c76825c..bc5eca4 100644 --- a/src/scss/app.scss +++ b/src/scss/app.scss @@ -371,5 +371,18 @@ td.trim-p p:last-child { font-size: 3em; margin: 0; padding: 0; +} + +.post-tags a.badge { + transition: color 250ms, background-color 250ms; + + &:link, &:visited, &:active { + background-color: #2D2D2D !important; + color: #fff; + } + + &:hover { + color: #03A9F4; + background-color: #1E1E1E !important; } } \ No newline at end of file