mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-20 21:54:58 -04:00
5fb632eb46
Closes #7723
24 lines
349 B
CSS
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%;
|
|
}
|
|
}
|
|
}
|