File size: 330 Bytes
fefb9a6 | 1 2 3 4 5 6 7 8 9 10 | {% extends "default/module.html.jinja2" %}
{% block style %}
{{ super() }}
<style>
/* Widen the content column so wide tables (e.g. the supported-solvent table) are not clipped. */
main, header { width: calc(78rem + var(--sidebar-width)); }
.pdoc table { width: 100%; }
</style>
{% endblock %}
|