1

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?

Zoe
  • 27,060
  • 21
  • 118
  • 148
Alex L
  • 11
  • 2

1 Answers1

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