Lots of style clean up

This commit is contained in:
Scott Idem
2026-01-15 17:51:48 -05:00
parent 572ce1841b
commit 39d0707968
5 changed files with 143 additions and 100 deletions

View File

@@ -110,19 +110,19 @@
<div class="space-y-4">
<div class="space-y-1">
<label class="label text-xs font-bold opacity-75">Account Name</label>
<input class="input variant-filled-surface rounded-lg" type="text" bind:value={account.name} />
<input class="input variant-filled-surface rounded-lg p-2" type="text" bind:value={account.name} />
</div>
<div class="space-y-1">
<label class="label text-xs font-bold opacity-75">Short Name</label>
<input class="input variant-filled-surface rounded-lg" type="text" bind:value={account.short_name} />
<input class="input variant-filled-surface rounded-lg p-2" type="text" bind:value={account.short_name} />
</div>
<div class="space-y-1">
<label class="label text-xs font-bold opacity-75">Account Code</label>
<input class="input variant-filled-surface rounded-lg font-mono" type="text" bind:value={account.code} />
<input class="input variant-filled-surface rounded-lg font-mono p-2" type="text" bind:value={account.code} />
</div>
<div class="space-y-1">
<label class="label text-xs font-bold opacity-75">Description</label>
<textarea class="textarea variant-filled-surface rounded-lg" rows="3" bind:value={account.description}></textarea>
<textarea class="textarea variant-filled-surface rounded-lg p-2" rows="3" bind:value={account.description}></textarea>
</div>
</div>
</div>
@@ -148,11 +148,11 @@
<div class="space-y-4 border-t border-surface-500/30 pt-4">
<div class="space-y-1">
<label class="label text-xs font-bold opacity-75">Group</label>
<input class="input variant-filled-surface rounded-lg" type="text" bind:value={account.group} />
<input class="input variant-filled-surface rounded-lg p-2" type="text" bind:value={account.group} />
</div>
<div class="space-y-1">
<label class="label text-xs font-bold opacity-75">Sort Order</label>
<input class="input variant-filled-surface rounded-lg" type="number" bind:value={account.sort} />
<input class="input variant-filled-surface rounded-lg p-2" type="number" bind:value={account.sort} />
</div>
</div>
</div>
@@ -162,7 +162,7 @@
<span class="text-tertiary-500"></span> Internal Notes
</h3>
<div class="space-y-1">
<textarea class="textarea variant-filled-surface rounded-lg" rows="4" bind:value={account.notes} placeholder="Private notes for staff..."></textarea>
<textarea class="textarea variant-filled-surface rounded-lg p-2" rows="4" bind:value={account.notes} placeholder="Private notes for staff..."></textarea>
</div>
</div>
</div>