From 6ef1a1c0b8b363ef421bc7b76abc272367b219d4 Mon Sep 17 00:00:00 2001 From: evazion Date: Sat, 28 Sep 2019 14:05:55 -0500 Subject: [PATCH] css: fix dead space around thumbnails in tables. --- app/javascript/src/styles/specific/posts.scss | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/app/javascript/src/styles/specific/posts.scss b/app/javascript/src/styles/specific/posts.scss index c6a677755..26857bb63 100644 --- a/app/javascript/src/styles/specific/posts.scss +++ b/app/javascript/src/styles/specific/posts.scss @@ -58,6 +58,13 @@ article.post-preview { } } +/* Avoid dead space around thumbnails in tables. */ +table article.post-preview { + height: auto; + width: auto; + margin: 0; +} + #saved-searches-nav { margin-top: 1em; }