Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 13 additions & 13 deletions examples/Demo/Shared/Pages/Card/Examples/CardDefault.razor
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<FluentCard Width="400px" Height="400px">
<p>Just some content in a card (with a button that does not do anything).</p>
<FluentButton Appearance="Appearance.Accent">Hello</FluentButton>
</FluentCard>



<FluentCard >
<p>Just some content in a card (with a button that does not do anything).</p>

<FluentButton Appearance="Appearance.Accent">Hello</FluentButton>
<p>No Width or Height has been specified.</p>
</FluentCard>
<div>
<FluentCard Width="400px" Height="400px">
<p>Just some content in a card (with a button that does not do anything).</p>
<FluentButton Appearance="Appearance.Accent">Hello</FluentButton>
</FluentCard>
</div>
<div>
<FluentCard>
<p>Just some content in a card (with a button that does not do anything).</p>
<FluentButton Appearance="Appearance.Accent">Hello</FluentButton>
<p>No Width or Height has been specified.</p>
</FluentCard>
</div>
Loading