Live video on the AT Protocol

docs: preserve whitespace in first column table cells (#248)

* preserve whitespace in first table column cells

* Set minimum width of 100px for all table cells

authored by

Eli Mallon and committed by
GitHub
3d326dcd c4b634aa

+10
+1
js/docs/astro.config.mjs
··· 13 "@fontsource/atkinson-hyperlegible-next/400.css", 14 "@fontsource/atkinson-hyperlegible-next/600.css", 15 "./src/styles/custom-font-face.css", 16 ], 17 social: [ 18 {
··· 13 "@fontsource/atkinson-hyperlegible-next/400.css", 14 "@fontsource/atkinson-hyperlegible-next/600.css", 15 "./src/styles/custom-font-face.css", 16 + "./src/styles/pre-first-table-col.css", 17 ], 18 social: [ 19 {
+9
js/docs/src/styles/pre-first-table-col.css
···
··· 1 + table td:first-child, 2 + table th:first-child { 3 + white-space: pre; 4 + } 5 + 6 + table td, 7 + table th { 8 + min-width: 100px; 9 + }