Fork of daniellemaywood.uk/gleam — Wasm codegen work
2

Configure Feed

Select the types of activity you want to include in your feed.

improve doc tables on small screens

author
Giacomo Cavalieri
committer
Louis Pilfold
date (May 18, 2026, 12:26 PM +0100) commit 66b8a067 parent 4c2706b4 change-id nqzowokp
+11
+3
CHANGELOG.md
··· 61 61 flag is passed, no progress information is printed. 62 62 ([Giacomo Cavalieri](https://github.com/giacomocavalieri)) 63 63 64 + - Tables in the generated docs now look better on smaller screens. 65 + ([Giacomo Cavalieri](https://github.com/giacomocavalieri)) 66 + 64 67 - The comment in `manifest.toml` now instructs the user to include it in their 65 68 source control repository. 66 69 ([Louis Pilfold](https://github.com/lpil))
+8
compiler-core/templates/docs-css/index.css
··· 605 605 /* Tables */ 606 606 607 607 table { 608 + display: block; 609 + overflow-inline: auto; 608 610 border-spacing: 0; 609 611 border-collapse: collapse; 610 612 } 611 613 612 614 table td, 613 615 table th { 616 + /* Inside table cells we don't won't to break words anywhere, otherwise in 617 + narrow columns or in tables with many columns we'd end up with columns with 618 + a single character per line. 619 + */ 620 + word-break: normal; 621 + overflow-wrap: normal; 614 622 padding: 6px 13px; 615 623 border: 1px solid var(--table-border); 616 624 }