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.
This commit is contained in:
Vinicius Camargo 2017-11-06 18:23:37 -02:00 committed by GitHub
parent 338d579c02
commit c8691838ca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,6 +1,9 @@
.nav-tabs {
.nav-link {
color: $gray-600;
&.hover {
cursor: pointer;
}
&.active {
color: $gray-800;
background: #fff;