mostly css

This commit is contained in:
Andras Bacsai
2023-05-31 10:19:29 +02:00
parent 40bab90946
commit 232d2ccf79
21 changed files with 138 additions and 90 deletions

View File

@@ -1,5 +1,9 @@
<div x-data="{ deleteApplication: false }">
<h2>Danger Zone</h2>
<h2 class="pb-0">Danger Zone</h2>
<div class="text-sm">Woah. I hope you know what are you doing.</div>
<h3 class="pb-0">Delete Application</h3>
<div class="text-sm">This will stop your containers, delete all related data, etc. Beware! There is no coming back!
</div>
<x-naked-modal show="deleteApplication" />
<x-forms.button x-on:click.prevent="deleteApplication = true">Delete this application</x-forms.button>
<x-forms.button x-on:click.prevent="deleteApplication = true">Delete</x-forms.button>
</div>