I am trying to implement a UI which has tabs (or Pivots ) from Office fabirc UI and i was wondering if i could increase the size(or better yet customize my pivot size)? I tried playing around with PivotLinkSize.large but i would like to increase both the height and the width of my Pivot.
return (
<div>
<Pivot linkFormat={PivotLinkFormat.tabs} linkSize={PivotLinkSize.large}>
<PivotItem headerText="Foo">
<Label>Pivot #1</Label>
</PivotItem>
</Pivot>
</div>
);
I am just getting into learning react and office fabric UI and would appreciate any help here.