Feat: Agregar altura máxima a tablas de tareas y asistencias en informe empleados
All checks were successful
build-and-deploy / build-and-deploy (push) Successful in 52s

- Agregado max-h-96 y overflow-y-auto a DetalleTareas.vue
- Agregado max-h-96 y overflow-y-auto a DetalleAsistencias.vue
- Las tablas ahora tienen scroll vertical cuando hay muchos registros
This commit is contained in:
2025-11-13 18:32:37 -06:00
parent f952aee0f5
commit 5fe4a3af5c
2 changed files with 2 additions and 2 deletions

View File

@@ -29,7 +29,7 @@
</div> </div>
</template> </template>
<div class="overflow-x-auto"> <div class="overflow-x-auto max-h-96 overflow-y-auto">
<table class="w-full text-sm"> <table class="w-full text-sm">
<thead> <thead>
<tr class="border-b border-[var(--brand-border)]"> <tr class="border-b border-[var(--brand-border)]">

View File

@@ -29,7 +29,7 @@
</div> </div>
</template> </template>
<div class="overflow-x-auto"> <div class="overflow-x-auto max-h-96 overflow-y-auto">
<table class="w-full text-sm"> <table class="w-full text-sm">
<thead> <thead>
<tr class="border-b border-[var(--brand-border)]"> <tr class="border-b border-[var(--brand-border)]">