···6161 flag is passed, no progress information is printed.
6262 ([Giacomo Cavalieri](https://github.com/giacomocavalieri))
63636464+- Tables in the generated docs now look better on smaller screens.
6565+ ([Giacomo Cavalieri](https://github.com/giacomocavalieri))
6666+6467- The comment in `manifest.toml` now instructs the user to include it in their
6568 source control repository.
6669 ([Louis Pilfold](https://github.com/lpil))
···605605/* Tables */
606606607607table {
608608+ display: block;
609609+ overflow-inline: auto;
608610 border-spacing: 0;
609611 border-collapse: collapse;
610612}
611613612614table td,
613615table th {
616616+ /* Inside table cells we don't won't to break words anywhere, otherwise in
617617+ narrow columns or in tables with many columns we'd end up with columns with
618618+ a single character per line.
619619+ */
620620+ word-break: normal;
621621+ overflow-wrap: normal;
614622 padding: 6px 13px;
615623 border: 1px solid var(--table-border);
616624}