Unify primary buttons with gradient pill design across the app.
Deploy Ladill Events / deploy (push) Successful in 27s

Add shared btn-primary components and plus icons on create/new actions for a consistent Ladill UI.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
isaacclad
2026-06-08 22:49:28 +00:00
co-authored by Cursor
parent 7b08813c4e
commit f48865d437
29 changed files with 120 additions and 33 deletions
+4 -4
View File
@@ -212,11 +212,11 @@
Back
</button>
<button type="button" x-show="wizard && step < 3" x-cloak @click="nextStep()"
class="flex-1 rounded-xl bg-indigo-600 py-3 text-sm font-semibold text-white shadow-sm transition hover:bg-indigo-700">
class="btn-primary flex-1">
Continue
</button>
<button type="button" x-show="!wizard || step === 3" @click="wizardSubmit($event)"
class="flex-1 rounded-xl bg-indigo-600 py-3 text-sm font-semibold text-white shadow-sm transition hover:bg-indigo-700">
class="btn-primary flex-1">
{{ $isProgramme ? 'Create programme' : 'Create event' }}
</button>
</div>
@@ -240,11 +240,11 @@
Preview
</button>
<button type="button" x-show="wizard && step < 3" x-cloak @click="nextStep()"
class="flex flex-1 items-center justify-center gap-2 rounded-xl bg-indigo-600 py-2.5 text-sm font-semibold text-white shadow-sm transition hover:bg-indigo-700">
class="btn-primary flex-1">
Continue
</button>
<button type="button" x-show="!wizard || step === 3" @click="wizardSubmit($event)"
class="flex flex-1 items-center justify-center gap-2 rounded-xl bg-indigo-600 py-2.5 text-sm font-semibold text-white shadow-sm transition hover:bg-indigo-700">
class="btn-primary flex-1">
Create
</button>
</div>