From 7c94c2ac598c24181a7a021167a52d77941a5743 Mon Sep 17 00:00:00 2001 From: Joe Clay <27cupsofcoffee@gmail.com> Date: Fri, 6 Mar 2020 20:10:10 +0000 Subject: [PATCH] Fix box sizing on post images Fixes #76. --- sass/_extra.scss | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sass/_extra.scss b/sass/_extra.scss index 5e6786d1d..e35d8ad52 100644 --- a/sass/_extra.scss +++ b/sass/_extra.scss @@ -63,7 +63,8 @@ h6:hover .anchor { .post-content p img { display: block; + box-sizing: border-box; margin: 16px auto; padding: 8px; border: 1px solid #e8e8e8; -} \ No newline at end of file +}