mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
17 lines
238 B
CSS
17 lines
238 B
CSS
.tableContainer {
|
|
overflow-x: auto;
|
|
}
|
|
|
|
.table {
|
|
max-width: 100%;
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
}
|
|
|
|
@media only screen and (max-width: $breakpointSmall) {
|
|
.tableContainer {
|
|
overflow-y: hidden;
|
|
width: 100%;
|
|
}
|
|
}
|