Move Chevron in Fluent UI Nav to Right Side

Viewed 632
1 Answers

It's simple with styles property of Nav Component:

<Nav
  ...
  styles={{
    chevronButton: {
      right: 0,
      left: 'none',
    }
  }}
/>

Codepen working example.

Related