Fix: Agregar altura máxima a tabla de Lista de Ingresos
All checks were successful
build-and-deploy / build-and-deploy (push) Successful in 48s
All checks were successful
build-and-deploy / build-and-deploy (push) Successful in 48s
- Altura máxima de 600px con scroll vertical - Header sticky que se mantiene visible al hacer scroll - Mejora la usabilidad cuando hay muchos registros
This commit is contained in:
@@ -378,9 +378,9 @@
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<div v-if="data.listaIngresos && data.listaIngresos.length > 0" class="overflow-x-auto">
|
||||
<div v-if="data.listaIngresos && data.listaIngresos.length > 0" class="overflow-x-auto max-h-[600px] overflow-y-auto">
|
||||
<table class="w-full text-sm">
|
||||
<thead>
|
||||
<thead class="sticky top-0 bg-[#1c140c] z-10">
|
||||
<tr class="border-b border-[var(--brand-border)]">
|
||||
<th class="text-left py-3 px-2 font-semibold text-[var(--brand-text-muted)]">ID</th>
|
||||
<th class="text-left py-3 px-2 font-semibold text-[var(--brand-text-muted)]">Fecha</th>
|
||||
|
||||
Reference in New Issue
Block a user