Merge pull request #16330 from jlmitch5/patch-1

Fix table width on docsite
pull/16333/head
Sandra Wills 8 years ago committed by GitHub
commit f4724e55d3

@ -4738,7 +4738,17 @@ span[id*='MathJax-Span'] {
}
td {
word-break: break-all;
word-break: break-word;
}
th, td {
min-width: 100px;
}
table {
overflow-x: scroll;
display: block;
max-width: 100%;
}
@media print {

Loading…
Cancel
Save