Investigate how to handle overflow in equal sized text boxes #16
Loading…
Reference in New Issue
No description provided.
Delete Branch "%!s(<nil>)"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
There are a few text boxes which overflow when their size is made equal and the layout in adapted for mobile:
The reason is likely because the only way I've found to have them equally sized is by fixing the height.
W/o this trick, the boxes look unbalanced:
It would be nice to have both.
I've tried to switch from
div
totable
, but the layout would not fall from 3 columns to one when switching to smaller portrait screen (e.g: mobile phone).Can we have a dynamic
height
set as the max of all boxes from the same section?What I'd like is this website to look like https://www.haskell.org/
The boxes have equal sizes, regardless of the content, and they still fold on mobile (albeit in 2 columns)...