1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-20 21:54:58 -04:00
Files
Sonarr/frontend/src/Components/Table/Table.css
T
2025-03-24 19:30:31 -07:00

24 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%;
}
}
}