All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Successful in 10m46s
13 lines
312 B
CSS
13 lines
312 B
CSS
.expedition-table-wrap {
|
|
height: 30vh; /* 30% de la altura visible del navegador */
|
|
overflow-y: auto; /* genera el scrollbar vertical */
|
|
}
|
|
|
|
/* Sticky header */
|
|
.expedition-table thead th {
|
|
position: sticky;
|
|
top: 0;
|
|
z-index: 2;
|
|
background: #f8f9fa; /* mismo color que .table-light */
|
|
}
|