theme_overrides.css 364 B

12345678910111213
  1. /* override table width restrictions */
  2. @media screen and (min-width: 767px) {
  3. .wy-table-responsive table td {
  4. /* !important prevents the common CSS stylesheets from overriding
  5. this as on RTD they are loaded after this stylesheet */
  6. white-space: normal !important;
  7. }
  8. .wy-table-responsive {
  9. overflow: visible !important;
  10. }
  11. }