diff options
author | Raphael Kabo <raphaelkabo@hey.com> | 2024-02-28 22:40:33 +0000 |
---|---|---|
committer | Raphael Kabo <raphaelkabo@hey.com> | 2024-05-26 16:05:32 +0100 |
commit | 28be7ca850f41352a1e4e43f0c7035bdeeff6e83 (patch) | |
tree | 3d8bef1bec6dd3600c8ffb318c03b221ccb504b8 /views/newevent.handlebars | |
parent | 53288fa3df3f828e99eaba679d436e65def2deb4 (diff) |
New frontend styles, instance description functionality
Diffstat (limited to 'views/newevent.handlebars')
-rwxr-xr-x | views/newevent.handlebars | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/views/newevent.handlebars b/views/newevent.handlebars index 9df69db..0bc7b05 100755 --- a/views/newevent.handlebars +++ b/views/newevent.handlebars @@ -1,14 +1,15 @@ <main class="page"> -<div class="container mb-4"> +<h2 class="mb-3 text-center">What would you like to do?</h2> +<div class="container-fluid mb-4"> <div class="row"> - <div class="col-sm-4 p-2"> - <button type="button" id="showNewEventFormButton" class="btn btn-secondary w-100"><i class="fas fa-calendar-day"></i> Create a new event</button> + <div class="col-lg-4 p-2"> + <button type="button" id="showNewEventFormButton" class="button button--secondary w-100"><i class="fas fa-calendar-day"></i> Create a new event</button> </div> - <div class="col-sm-4 p-2"> - <button type="button" id="showImportEventFormButton" class="btn btn-secondary w-100"><i class="fas fa-file-import"></i> Import an existing event</button> + <div class="col-lg-4 p-2"> + <button type="button" id="showImportEventFormButton" class="button button--secondary w-100"><i class="fas fa-file-import"></i> Import an existing event</button> </div> - <div class="col-sm-4 p-2"> - <button type="button" id="showNewEventGroupFormButton" class="btn btn-secondary w-100"><i class="fas fa-calendar-alt"></i> Create a new event group </button> + <div class="col-lg-4 p-2"> + <button type="button" id="showNewEventGroupFormButton" class="button button--secondary w-100"><i class="fas fa-calendar-alt"></i> Create a new event group </button> </div> </div> </div> @@ -34,9 +35,9 @@ <button id="newEventFormSubmit" type="submit" - class="btn btn-primary w-50" + class="button button--primary w-50" x-bind:disabled="submitting" - x-bind:class="submitting ? 'btn--loading' : ''" + x-bind:class="submitting ? 'button--loading' : ''" x-text="submitting ? 'Creating...' : 'Create'" ></button> </div> @@ -58,9 +59,9 @@ <div class="col-sm-12 pt-3 pb-3 text-center"> <button type="submit" - class="btn btn-primary w-50" + class="button button--primary w-50" x-bind:disabled="submitting" - x-bind:class="submitting ? 'btn--loading' : ''" + x-bind:class="submitting ? 'button--loading' : ''" x-text="submitting ? 'Creating...' : 'Create'" ></button> </div> |