You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Sonarr/frontend/src/Components/Table/Table.css

24 lines
348 B

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