From d205267f48da2c5d7289d70f7872a0f6eb3bcc95 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Tue, 17 Jul 2018 01:09:29 -0400 Subject: [PATCH] Adjust whitespace padding around avatar images in comments --- css/65_data.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/css/65_data.css b/css/65_data.css index c68afa648..3d8a900a3 100644 --- a/css/65_data.css +++ b/css/65_data.css @@ -123,12 +123,16 @@ border-radius: 20px; } .comment-main { - padding: 10px; + padding: 10px 10px 10px 0; flex: 1 1 100%; flex-flow: column nowrap; overflow: hidden; overflow-wrap: break-word; } +[dir='rtl'] .comment-main { + padding: 10px 0 10px 10px; +} + .comment-metadata { flex-flow: row nowrap; justify-content: space-between;