From 866218c47951f7fa5a3e8ad6285dc6c4b67ac5e3 Mon Sep 17 00:00:00 2001 From: kolaente Date: Sun, 9 Feb 2020 15:09:11 +0100 Subject: [PATCH] Add slight background change when hovering over a task in the list --- src/styles/components/tasks.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/styles/components/tasks.scss b/src/styles/components/tasks.scss index 30655b5ca..0adb0635a 100644 --- a/src/styles/components/tasks.scss +++ b/src/styles/components/tasks.scss @@ -27,6 +27,11 @@ display: block; padding: 0.5rem 1rem; border-bottom: 1px solid darken(#fff, 10%); + transition: background-color $transition; + + &:hover { + background-color: darken($light-background, 3); + } span:not(.tag) { width: calc(100% - 40px);