Make table overflow-x scroll only on small viewports and not footnote tables at all

This commit is contained in:
copernicus-mogley 2020-01-24 14:52:34 +01:00 committed by Daira Hopwood
parent 6fe1065ffd
commit e1fde7fda1
1 changed files with 6 additions and 1 deletions

View File

@ -135,9 +135,14 @@ hr {
table {
border-collapse: collapse;
border: 0 none transparent;
}
@media (max-width: 576px) {
table:not(.footnote) {
display: block;
overflow-x: scroll;
border: 0 none transparent;
}
}
th, td {