mirror of
https://github.com/tiennm99/coolify.git
synced 2026-08-20 08:23:25 +00:00
Standardize highlighted buttons, selected controls, and loading indicators on coollabs accent colors; improve light-mode log toolbar styling; enhance small popups with compact/icon modes; and align navbars, helpers, and related layouts with matching tests.
19 lines
814 B
PHP
19 lines
814 B
PHP
<form class="space-y-4" wire:submit="submit">
|
|
<div class="grid gap-4 md:grid-cols-2">
|
|
<x-forms.input placeholder="Your project name" id="name" label="Name" required />
|
|
<x-forms.input placeholder="A short project description" id="description" label="Description" />
|
|
</div>
|
|
|
|
<p
|
|
class="rounded-lg border border-neutral-200 bg-neutral-50 px-3 py-2.5 text-[12px] text-neutral-500 dark:border-white/[0.08] dark:bg-white/[0.025] dark:text-fg-dim">
|
|
A production environment will be created automatically.
|
|
</p>
|
|
|
|
<footer class="flex justify-end border-t border-neutral-200 pt-4 dark:border-white/[0.08]">
|
|
<x-forms.button type="submit"
|
|
defaultClass="button button-highlighted">
|
|
Create project
|
|
</x-forms.button>
|
|
</footer>
|
|
</form>
|