I need a dialog with three buttons the user can click in response.
Right now, the three buttons are wrapping horizontally.
How can I display them in a column (one below the other)?
I tried this but it didn't change the display:
<DialogButtons>
<div class="d-flex flex-column">
<DialogButton IsPrimary="true"
Content="Replace Existing With This"
OnClick="@OnBtnClick" />
<DialogButton IsPrimary="false"
Content="Show Previous Run"
OnClick="@OnBtnClick" />
<DialogButton IsPrimary="false"
Content="Add This Run as an Updated Version"
OnClick="@OnBtnClick" />
</div>
</DialogButtons>