In any of the Nav examples at https://developer.microsoft.com/en-us/fluentui#/controls/web/nav how would I go about moving the Chevron from the left side to the right side?
Asked
Active
Viewed 1,051 times
1 Answers
0
It's simple with styles
property of Nav Component
:
<Nav
...
styles={{
chevronButton: {
right: 0,
left: 'none',
}
}}
/>
Codepen working example.

Marko Savic
- 2,159
- 2
- 14
- 27