From ad28875d9c3b9d06e4e1432097c60277a209b152 Mon Sep 17 00:00:00 2001 From: narcolepticinsomniac Date: Sun, 26 May 2019 15:19:26 -0400 Subject: [PATCH] Hide single editor for the split second it's expanding --- edit/edit.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/edit/edit.css b/edit/edit.css index 21f27057..09c70bd5 100644 --- a/edit/edit.css +++ b/edit/edit.css @@ -268,6 +268,12 @@ input:invalid { margin: 0 0.7rem; padding: 1rem; } +.section:only-child { + opacity: 0 !important; +} +.section.height-calculated:only-child { + opacity: 1 !important; +} #sections > :not(:first-child) { border-top: 2px solid hsl(0, 0%, 80%); }