fix(frontend): narrow legacy cell alignment to Ref's markup

Ref never aligns `.tb_layout` cells from the table; each legacy cell opts in
with align=center. The directory title table, npc list and chief reservation
rows follow that, the nation info cells use Ref's gray rule, and the main
document stops clipping horizontally.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-08-04 07:37:42 +00:00
co-authored by Claude Opus 5
parent 74f76aaa4f
commit 2f4569c057
6 changed files with 24 additions and 12 deletions
@@ -308,9 +308,13 @@ onMounted(async () => {
.nation-count-column {
width: 15%;
}
/*
* Ref reports border-box and default alignment here, but adopting either
* changes this page's rendered height and the nation table centring, so the
* visible geometry is preserved instead.
*/
.footer {
box-sizing: border-box;
text-align: left;
box-sizing: content-box;
height: 35.5px;
margin-top: 0;
padding: 20px 0 0;