summaryrefslogtreecommitdiff
path: root/views/partials/editeventmodal.handlebars
diff options
context:
space:
mode:
Diffstat (limited to 'views/partials/editeventmodal.handlebars')
-rw-r--r--views/partials/editeventmodal.handlebars8
1 files changed, 4 insertions, 4 deletions
diff --git a/views/partials/editeventmodal.handlebars b/views/partials/editeventmodal.handlebars
index 528dc1e..986da9c 100644
--- a/views/partials/editeventmodal.handlebars
+++ b/views/partials/editeventmodal.handlebars
@@ -21,7 +21,7 @@
<div class="card border-danger mb-3">
<div class="card-header text-danger">Delete this event</div>
<div class="card-body text-danger">
- <button type="button" id="deleteEvent" class="btn btn-danger" data-toggle="modal"
+ <button type="button" id="deleteEvent" class="button button--danger" data-toggle="modal"
data-target="#deleteModal" data-event-id="{{eventData.id}}"><i class="fas fa-trash"></i>
Delete</button>
</div>
@@ -30,13 +30,13 @@
</form>
</div>
<div class="modal-footer">
- <button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
+ <button type="button" class="button button--secondary" data-dismiss="modal">Close</button>
<button
type="submit"
- class="btn btn-primary"
+ class="button button--primary"
@click="submitForm"
x-bind:disabled="submitting"
- x-bind:class="submitting ? 'btn--loading' : ''"
+ x-bind:class="submitting ? 'button--loading' : ''"
x-text="submitting ? 'Saving...' : 'Save'"
></button>
</div>