From c8691838caec3d68781f3cbe32f4d128cc7845df Mon Sep 17 00:00:00 2001 From: Vinicius Camargo Date: Mon, 6 Nov 2017 18:23:37 -0200 Subject: [PATCH 1/2] change style of the cursor on nav link The current behavior is to display the `text` cursor when on hover, even though `nav-link` is an anchor. It does not display the `pointer` cursor because `nav-link` is missing the `href` attribute. --- React_Starter/scss/core/_nav.scss | 3 +++ 1 file changed, 3 insertions(+) diff --git a/React_Starter/scss/core/_nav.scss b/React_Starter/scss/core/_nav.scss index ba1d64b..c6580c9 100644 --- a/React_Starter/scss/core/_nav.scss +++ b/React_Starter/scss/core/_nav.scss @@ -1,6 +1,9 @@ .nav-tabs { .nav-link { color: $gray-600; + &.hover { + cursor: pointer; + } &.active { color: $gray-800; background: #fff; From 5cabefb181afffb3597411586c37184d96edda45 Mon Sep 17 00:00:00 2001 From: Vinicius Camargo Date: Fri, 17 Nov 2017 03:49:49 -0200 Subject: [PATCH 2/2] Update _nav.scss --- React_Starter/scss/core/_nav.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/React_Starter/scss/core/_nav.scss b/React_Starter/scss/core/_nav.scss index c6580c9..cae5179 100644 --- a/React_Starter/scss/core/_nav.scss +++ b/React_Starter/scss/core/_nav.scss @@ -1,7 +1,7 @@ .nav-tabs { .nav-link { color: $gray-600; - &.hover { + &:hover { cursor: pointer; } &.active {