From d924303c325e10ccbb6174514cacf55efbb82824 Mon Sep 17 00:00:00 2001 From: Sebastian Kippe Date: Sun, 12 Nov 2017 15:08:35 +0100 Subject: [PATCH] Prevent outlines on active links (nav) --- app/styles/app.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app/styles/app.scss b/app/styles/app.scss index 55c660f..2437f73 100644 --- a/app/styles/app.scss +++ b/app/styles/app.scss @@ -2,6 +2,11 @@ @import "colors"; @import "layout"; +* { + -moz-outline: none; + outline: none; +} + body { background-color: white; font-size: 16px;