Veykril/tlborm

MBE Practical Example: Table width causes wrap in first column

archaephyrryx opened this issue · 2 comments

The rendered version of the book has a CSS rule defined in variables.css as follows

:root {
    --sidebar-width: 300px;
    --page-padding: 15px;
    --content-max-width: 750px;
    --menu-bar-height: 50px;
}

This definition of a max width of 750px causes the parse-table element on the practical introduction section of the MBE chapter to line-wrap in the first column, which makes the block-arrow indicator very difficult to follow.

I found that relaxing this constraint to even 900px in my browser inspector caused the table to widen enough that the wrapping no longer occurred, at least on my display and browser:

At default 750px

After widening to 900px

Ah, thanks for pointing that out, 7b7b1db should fix this by selectively enlarging it