Update CSS styles and input layout

This commit is contained in:
Dede Fuji Abdul
2024-03-08 09:27:12 +07:00
parent be0128398c
commit dec65b2588
2 changed files with 11 additions and 57 deletions

View File

@ -83,10 +83,10 @@ onMounted(() => {
<div class="flex flex-col flex-1 space-y-2">
<label class="filter-input-label">Lapor Ulang:</label>
<div class="grid grid-flow-col auto-cols-auto gap-x-1.5">
<InputNumber @update:time-value="(value) => (data.minJmlLapor = value)" />
<div class="flex flex-1 justify-between gap-x-1.5">
<InputNumber @update:time-value="(value) => (data.minJmlLapor = value)" class="flex flex-1" />
<small class="flex items-center">s/d</small>
<InputNumber @update:time-value="(value) => (data.maxJmlLapor = value)" />
<InputNumber @update:time-value="(value) => (data.maxJmlLapor = value)" class="flex flex-1" />
</div>
</div>
</div>