Make tables responsive

This commit is contained in:
Alexandre Iooss 2020-08-10 15:10:02 +02:00
parent 8933fddaf3
commit 7719ff41ad
1 changed files with 8 additions and 0 deletions

View File

@ -79,6 +79,14 @@ SPDX-License-Identifier: GPL-3.0-or-later
.container-fluid {
max-width: 1600px;
}
/* Apply Bootstrap table-responsive to all Django tables */
.table-container {
display: block;
width: 100%;
overflow-x: auto;
-webkit-overflow-scrolling: touch;
}
</style>
{% block extracss %}{% endblock %}