Skip to content

Commit

Permalink
Add padding after dialog symbols
Browse files Browse the repository at this point in the history
  • Loading branch information
gavtroy committed Nov 17, 2023
1 parent c84a2c5 commit 40a40e5
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions static/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@
{{ else }}
{{#if msg}}
<div class="mt-3 alert alert-{{level}} alert-dismissible fade show" role="alert">
{{#if glyph}}<i class="{{glyph}}"></i>{{/if}}
{{#if glyph}}<i class="{{glyph}}"></i>&ensp;{{/if}}
{{#if msg_title}}<span title="{{msg_title}}"> {{/if}}{{msg}}{{#if url}} <a href="{{url}}">{{url}}</a>{{/if}}{{#if msg_title}}</span>{{/if}}
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">&times;</span>
Expand Down Expand Up @@ -296,8 +296,7 @@
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="password-modal-label">
<i class="fas fa-key"></i>
Please enter the password for this paste
<i class="fas fa-key"></i>&ensp;Please enter the password for this paste
</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">&times;</span>
Expand All @@ -306,8 +305,7 @@ <h5 class="modal-title" id="password-modal-label">
<div class="modal-body">
<form>
<div class="alert alert-danger collapse" role="alert" id="modal-alert">
<i class="fas fa-exclamation-triangle"></i>
Could not decrypt data. Wrong password?
<i class="fas fa-exclamation-triangle"></i>&ensp;Could not decrypt data. Wrong password?
</div>
<div class="form-group">
<input type="password" class="form-control" id="modal-password">
Expand All @@ -329,8 +327,7 @@ <h5 class="modal-title" id="password-modal-label">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="deletion-modal-label">
<i class="fas fa-trash"></i>
Delete this paste?
<i class="fas fa-trash"></i>&ensp;Delete this paste?
</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
Expand Down

0 comments on commit 40a40e5

Please sign in to comment.