Spaces:
Sleeping
Sleeping
File size: 582 Bytes
88bf46c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
.full-width {
width: 100%;
}
.table-container {
width: 100%;
overflow-x: auto;
margin-top: 16px;
}
.responsive-table {
min-width: 800px; /* Adjust based on your needs */
width: 100%;
table-layout: auto;
}
.mat-header-cell, .mat-cell {
padding: 8px;
text-align: left;
white-space: nowrap;
}
.actions-cell {
min-width: 220px; /* Adjust this value as necessary */
}
.mat-header-row, .mat-row {
display: table-row;
}
.mat-header-row.sticky {
background-color: white; /* Ensure the header has a background */
position: sticky;
top: 0;
z-index: 1;
}
|