13 lines
305 B
CSS
13 lines
305 B
CSS
|
|
.expedition-table-wrap {
|
|||
|
|
max-height: 200px; /* controla la altura visible */
|
|||
|
|
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 */
|
|||
|
|
}
|