mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-05 20:42:19 -07:00
23 lines
349 B
CSS
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%;
|
|
}
|
|
}
|
|
}
|