mirror of https://gitlab.crans.org/bde/nk20
Make tables responsive
This commit is contained in:
parent
8933fddaf3
commit
7719ff41ad
|
@ -79,6 +79,14 @@ SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
.container-fluid {
|
.container-fluid {
|
||||||
max-width: 1600px;
|
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>
|
</style>
|
||||||
|
|
||||||
{% block extracss %}{% endblock %}
|
{% block extracss %}{% endblock %}
|
||||||
|
|
Loading…
Reference in New Issue