We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 10e8472 commit 49c8247Copy full SHA for 49c8247
src/LinkDotNet.Blog.Web/Features/Components/ConfirmDialog.razor
@@ -1,8 +1,8 @@
1
<ModalDialog @ref="ModalDialog" Title="@Title">
2
<h3>@Content</h3>
3
- <div class="actions">
4
- <button id="ok" @onclick="OnYesButtonPressed" type="button" class="btn btn-primary">Ok</button>
5
- <button id="cancel" @onclick="OnNoButtonPressed" type="button" class="btn btn-secondary">Cancel</button>
+ <div class="d-flex justify-content-end gap-2 mt-4">
+ <button id="ok" @onclick="OnYesButtonPressed" type="button" class="btn btn-primary w-100" style="max-width: 125px;">Ok</button>
+ <button id="cancel" @onclick="OnNoButtonPressed" type="button" class="btn btn-secondary w-100" style="max-width: 125px;">Cancel</button>
6
</div>
7
</ModalDialog>
8
0 commit comments