From d939234aca3dc7a94cad2bb3fa4231e398fc50a5 Mon Sep 17 00:00:00 2001 From: remi Date: Wed, 4 May 2022 23:15:41 +0200 Subject: [PATCH] edge case fix --- text_analysis.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/text_analysis.css b/text_analysis.css index 409ac69..5837b54 100644 --- a/text_analysis.css +++ b/text_analysis.css @@ -50,6 +50,11 @@ main { margin-top: 8px; } +.convo *:first-child { + margin-top: 0; + /* edge case for when a p is alone in a .convo */ +} + .convo-header { display: flex; justify-content: space-between;