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-tabs {
|
||||||
.nav-link {
|
.nav-link {
|
||||||
color: $gray-600;
|
color: $gray-600;
|
||||||
|
&.hover {
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
&.active {
|
&.active {
|
||||||
color: $gray-800;
|
color: $gray-800;
|
||||||
background: #fff;
|
background: #fff;
|
||||||
|
Loading…
Reference in New Issue
Block a user