blob: 83afc78e29cc57e86d9bb5c1c93aff439f65ba8e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* override table width restrictions */
.wy-table-responsive table td, .wy-table-responsive table th {
/* !important prevents the common CSS stylesheets from
overriding this as on RTD they are loaded after this stylesheet */
white-space: normal !important;
}
.wy-table-responsive {
overflow: visible !important;
}
|