From 965d2c87f5e365a0cf0bef8947dc252b86239bc4 Mon Sep 17 00:00:00 2001 From: Peter Stuifzand Date: Sat, 15 Jan 2022 16:35:57 +0100 Subject: [PATCH] Problem: tags are not very visible Solution: improve visibility of tags with a bit of color --- editor/src/styles.scss | 7 +++++++ templates/view.html | 4 ---- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/editor/src/styles.scss b/editor/src/styles.scss index 237b522..23e1f75 100644 --- a/editor/src/styles.scss +++ b/editor/src/styles.scss @@ -664,3 +664,10 @@ input.input-line, input.input-line:active { .search.input.is-error { outline: red solid 4px; } + +.tag { + background: #deeeee; + color: #444; + border-radius: 3px; + padding: 2px 4px; +} diff --git a/templates/view.html b/templates/view.html index 4515dca..9c13b34 100644 --- a/templates/view.html +++ b/templates/view.html @@ -44,9 +44,5 @@ .edit { color: red; } - - .tag { - color: #444; - } {{ end }}