From 444502a84c65e60988185d5a2c608a95dfc393ee Mon Sep 17 00:00:00 2001 From: KevinMidboe Date: Sun, 3 Jan 2021 16:52:54 +0100 Subject: [PATCH] Added custom selection color. --- frontend/styles/global.scss | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/frontend/styles/global.scss b/frontend/styles/global.scss index cd48613..e07cbce 100644 --- a/frontend/styles/global.scss +++ b/frontend/styles/global.scss @@ -20,9 +20,15 @@ body { font-family: Moderat, Helvetica Neue; margin: 0; + + ::selection { + background-color: #72533b; + color: white; + } } a { + color: inherit; text-decoration: none; }