Improved input text spacing with small screens
This commit is contained in:
@@ -4,8 +4,7 @@
|
|||||||
<a class="flex items-center mb-6 text-5xl font-extrabold tracking-tight text-gray-900 dark:text-white">
|
<a class="flex items-center mb-6 text-5xl font-extrabold tracking-tight text-gray-900 dark:text-white">
|
||||||
Coolify
|
Coolify
|
||||||
</a>
|
</a>
|
||||||
<div
|
<div class="w-full bg-white rounded-lg shadow md:mt-0 sm:max-w-md xl:p-0 dark:bg-base">
|
||||||
class="w-full bg-white rounded-lg shadow md:mt-0 sm:max-w-md xl:p-0 dark:bg-base">
|
|
||||||
<div class="p-6 space-y-4 md:space-y-6 sm:p-8">
|
<div class="p-6 space-y-4 md:space-y-6 sm:p-8">
|
||||||
<h1 class="text-xl font-bold leading-tight tracking-tight text-gray-900 md:text-2xl dark:text-white">
|
<h1 class="text-xl font-bold leading-tight tracking-tight text-gray-900 md:text-2xl dark:text-white">
|
||||||
Create an account
|
Create an account
|
||||||
|
|||||||
@@ -132,7 +132,7 @@
|
|||||||
|
|
||||||
@if ($server->isFunctional())
|
@if ($server->isFunctional())
|
||||||
<h3 class="py-4">Settings</h3>
|
<h3 class="py-4">Settings</h3>
|
||||||
<div class="flex gap-2">
|
<div class="flex gap-2 flex-wrap sm:flex-nowrap">
|
||||||
<x-forms.input id="cleanup_after_percentage" label="Disk cleanup threshold (%)" required
|
<x-forms.input id="cleanup_after_percentage" label="Disk cleanup threshold (%)" required
|
||||||
helper="The disk cleanup task will run when the disk usage exceeds this threshold." />
|
helper="The disk cleanup task will run when the disk usage exceeds this threshold." />
|
||||||
<x-forms.input id="server.settings.concurrent_builds" label="Number of concurrent builds" required
|
<x-forms.input id="server.settings.concurrent_builds" label="Number of concurrent builds" required
|
||||||
|
|||||||
@@ -3,11 +3,11 @@
|
|||||||
<x-limit-reached name="servers" />
|
<x-limit-reached name="servers" />
|
||||||
@else
|
@else
|
||||||
<form class="flex flex-col w-full gap-2" wire:submit='submit'>
|
<form class="flex flex-col w-full gap-2" wire:submit='submit'>
|
||||||
<div class="flex w-full gap-2">
|
<div class="flex w-full gap-2 flex-wrap sm:flex-nowrap">
|
||||||
<x-forms.input autofocus id="name" label="Name" required />
|
<x-forms.input autofocus id="name" label="Name" required />
|
||||||
<x-forms.input id="description" label="Description" />
|
<x-forms.input id="description" label="Description" />
|
||||||
</div>
|
</div>
|
||||||
<div class="flex gap-2">
|
<div class="flex gap-2 flex-wrap sm:flex-nowrap">
|
||||||
<x-forms.input id="ip" label="IP Address/Domain" required
|
<x-forms.input id="ip" label="IP Address/Domain" required
|
||||||
helper="An IP Address (127.0.0.1) or domain (example.com)." />
|
helper="An IP Address (127.0.0.1) or domain (example.com)." />
|
||||||
<x-forms.input type="number" id="port" label="Port" required />
|
<x-forms.input type="number" id="port" label="Port" required />
|
||||||
|
|||||||
Reference in New Issue
Block a user