DOCS: adds custom css to change table display

This commit is contained in:
cadihowley 2020-11-05 11:42:35 +13:00 committed by Matan Bareket
parent 183d7b325f
commit 3dd5521a16

View File

@ -1,14 +1,22 @@
/* override table width restrictions */
@media screen and (min-width: 1080px) {
@media (min-width: 385px){
.wy-table-responsive table td {
/* !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;
}
}
.wy-table-responsive table {
table-layout: fixed !important;
width: 100% !important;
}
}