lidarr/frontend/src/Components/Table/Table.css
Mark McDowall 18f13fe7f8 Fixed: Allow tables to scroll on tablets in portrait mode
(cherry picked from commit 5fb632eb46cf77ea4f61d407f6429d9c32dba766)
2025-03-25 20:58:58 +02:00

23 lines
349 B
CSS

.tableContainer {
&.horizontalScroll {
overflow-x: auto;
}
}
.table {
max-width: 100%;
width: 100%;
border-collapse: collapse;
}
@media only screen and (max-width: $breakpointMedium) {
.tableContainer {
min-width: 100%;
width: fit-content;
&.horizontalScroll {
overflow-y: hidden;
width: 100%;
}
}
}