Radarr/frontend/src/Components/Table/Table.css
Qstick 23670bca12 New: Upstream Updates
Co-Authored-By: Mark McDowall <markus101@users.noreply.github.com>
2019-08-30 22:50:03 -04:00

23 lines
348 B
CSS

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