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:
parent
338d579c02
commit
c8691838ca
@ -1,6 +1,9 @@
|
||||
.nav-tabs {
|
||||
.nav-link {
|
||||
color: $gray-600;
|
||||
&.hover {
|
||||
cursor: pointer;
|
||||
}
|
||||
&.active {
|
||||
color: $gray-800;
|
||||
background: #fff;
|
||||
|
Loading…
Reference in New Issue
Block a user