Unable to style nav link on hover #16206
-
I try to style the anchor tag on hover in Nav component but its impossible to override the default style. INavStyles does not have any prop to support hover case.
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
You can do this using a const styles: Partial<INavStyles> = {
link: {
'.ms-Nav-compositeLink:hover &': {
backgroundColor: 'purple' // your real styling here
}
}
}; Here's a live demo: https://codepen.io/ecraig12345/pen/abZjZme |
Beta Was this translation helpful? Give feedback.
You can do this using a
.ms-Nav-compositeLink:hover
selector withinstyles.link
:Here's a live demo: https://codepen.io/ecraig12345/pen/abZjZme