Skip to content

Commit

Permalink
add horizonal button spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
josxha committed Mar 22, 2024
1 parent 7b6bf89 commit 8b6ece4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions OryAdmin/Components/Pages/OAuth2/Clients/View.razor
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ else
<p>Are you sure to delete this client?</p>
<p>Be aware that this cannot be undone.</p>
</section>
<footer class="modal-card-foot">
<footer class="modal-card-foot buttons">
<button class="button" data-target="delete-client-modal"
type="button" @onclick="HideDeleteModal">
Cancel
Expand Down Expand Up @@ -122,7 +122,7 @@ else
</label>
<p>This will delete the old client secret and replace it with new new one.</p>
</section>
<footer class="modal-card-foot">
<footer class="modal-card-foot buttons">
<button class="button" data-target="delete-client-modal"
type="button" @onclick="() => _confirmNewSecretModal = false">
Cancel
Expand Down Expand Up @@ -153,7 +153,7 @@ else
Please store your Client Secret because it can only be viewed once.
</div>
</section>
<footer class="modal-card-foot">
<footer class="modal-card-foot buttons">
<div class="button is-info" @onclick="() => _showNewSecretModal = false">
Done
</div>
Expand Down Expand Up @@ -359,7 +359,7 @@ else
</tr>
<tr>
<td>Metadata</td>
<td>@(_client.Metadata == null ? "-" : _client.Metadata)</td>
<td>@(_client.Metadata ?? "-")</td>
</tr>
<tr>
<td>Subject type</td>
Expand Down

0 comments on commit 8b6ece4

Please sign in to comment.