From 8ea3fe9af037fef7626e2356f5d111c084e9812e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maur=C3=ADcio=20Meneghini=20Fauth?= Date: Sun, 16 Feb 2020 18:50:23 -0300 Subject: [PATCH] Fix coding standard issue MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: MaurĂ­cio Meneghini Fauth --- themes/original/scss/_nav.scss | 2 ++ themes/pmahomme/scss/_nav.scss | 3 +++ 2 files changed, 5 insertions(+) diff --git a/themes/original/scss/_nav.scss b/themes/original/scss/_nav.scss index b423375dd4..4d870f4bf9 100644 --- a/themes/original/scss/_nav.scss +++ b/themes/original/scss/_nav.scss @@ -8,6 +8,7 @@ &:hover { color: #f00; background-color: $bg-one; + @include border-radius(0.3em); } @@ -21,6 +22,7 @@ .show > .nav-link { color: #00f; background-color: $bg-one; + @include border-radius(0.3em); } } diff --git a/themes/pmahomme/scss/_nav.scss b/themes/pmahomme/scss/_nav.scss index e07b800768..08eb1ac909 100644 --- a/themes/pmahomme/scss/_nav.scss +++ b/themes/pmahomme/scss/_nav.scss @@ -7,10 +7,12 @@ background: #f2f2f2; color: #235a81; border: 1px solid #ddd; + @include border-radius(20px); &:hover { background-color: $bg-one; + @include border-radius(0.3em); } @@ -24,6 +26,7 @@ .show > .nav-link { background-color: #fff; color: #235a81; + @include border-radius(0.3em); } }