8000 change style of the cursor on nav link · AppRoxx/coreui-react-admin@c869183 · GitHub
[go: up one dir, main page]

Skip to content

Commit c869183

Browse files
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.
1 parent 338d579 commit c869183

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

React_Starter/scss/core/_nav.scss

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
.nav-tabs {
22
.nav-link {
33
color: $gray-600;
4+
&.hover {
5+
cursor: pointer;
6+
}
47
&.active {
58
color: $gray-800;
69
background: #fff;

0 commit comments

Comments
 (0)
0