mirror of
https://github.com/envmodules/modules.git
synced 2026-06-18 00:06:53 +08:00
18 lines
475 B
CSS
18 lines
475 B
CSS
/* override table width restrictions */
|
|
@media screen and (min-width: 767px) {
|
|
|
|
.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 table td {
|
|
vertical-align: top !important;
|
|
}
|
|
|
|
.wy-table-responsive {
|
|
overflow: visible !important;
|
|
}
|
|
}
|