AT Mot — a bilingual (EN/FR) daily word game native to the AT Protocol.
0

Configure Feed

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

Render each share-grid guess on its own line

The result/share preview dropped the emoji grid into a single text node
with rows joined by newlines, but .share-grid had no white-space rule, so
the browser collapsed the newlines and rendered every guess on one line.
Add white-space: pre so the newlines are honoured (and the fixed-width
grid never wraps).

+1
+1
src/ui/theme.css
··· 513 513 line-height: 1.18; 514 514 letter-spacing: 2px; 515 515 margin: 8px 0 14px; 516 + white-space: pre; 516 517 } 517 518 .result-actions { 518 519 display: flex;