diff --git a/frontend/src/pages/articleView.tsx b/frontend/src/pages/articleView.tsx index 71e36ed..9044699 100644 --- a/frontend/src/pages/articleView.tsx +++ b/frontend/src/pages/articleView.tsx @@ -850,7 +850,8 @@ function ArticleView({ pageTitle = "Articles", fixedType, excludeType }: Article
| + {/* min-w as well as w: see the thumbnail cell below. */} + | Title | Authors | Status | @@ -882,9 +883,16 @@ function ArticleView({ pageTitle = "Articles", fixedType, excludeType }: Article|
|---|---|---|---|---|
|
{item.featuredImage ? (
+ // min-w, because w-12 alone does not survive a crowded
+ // table. Tailwind's preflight puts max-width:100% on every
+ // img, which makes this one's min-content width zero, and
+ // auto table layout then takes the space it needs from the
+ // only column that will yield. The result is a 4px-wide
+ // sliver of photo at full height: the second badge on a
+ // row was enough to trigger it.
|