Skip to content

Commit

Permalink
Fix #2335 by supplying height to vertical tab examples
Browse files Browse the repository at this point in the history
  • Loading branch information
vnbaaij committed Jul 8, 2024
1 parent 9363620 commit 57d10f2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/Demo/Shared/Pages/Tabs/Examples/TabsDefault.razor
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ If checked, the contents of Tab two and three will be loaded after 1 second of p
<p>Active tab changed to: @changedto?.Label</p>

<h4>Vertical</h4>
<FluentTabs Orientation="Orientation.Vertical" ActiveTabId="tab-v1">
<FluentTabs Orientation="Orientation.Vertical" ActiveTabId="tab-v1" Style="height: 200px;">
<FluentTab Label="Tab one" Id="tab-v1">
Tab one content. This is for testing.
</FluentTab>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
</FluentTabs>

<h4>No active indicator - Vertical</h4>
<FluentTabs ShowActiveIndicator=false ActiveTabId="tab3" Orientation="Orientation.Vertical">
<FluentTabs ShowActiveIndicator=false ActiveTabId="tab3" Orientation="Orientation.Vertical" Style="height: 250px;">
<FluentTab Id="TabOne" Label="Tab one">
Tab one content. This is for testing.
</FluentTab>
Expand All @@ -25,4 +25,4 @@
<FluentTab id="tab4" Disabled=true Label="Tab four">
Tab four content. This is for testing.
</FluentTab>
</FluentTabs>
</FluentTabs>

0 comments on commit 57d10f2

Please sign in to comment.