From c8691838caec3d68781f3cbe32f4d128cc7845df Mon Sep 17 00:00:00 2001 From: Vinicius Camargo Date: Mon, 6 Nov 2017 18:23:37 -0200 Subject: [PATCH] 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;