From 6edd1bcb3ed8ab572cdbdcdfd137109c3d0542ed Mon Sep 17 00:00:00 2001 From: Adrian Heine Date: Sun, 20 Sep 2020 22:51:43 +0200 Subject: [PATCH] Remove min-height on modals --- style.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/style.css b/style.css index 8e4dda1..eb63a20 100644 --- a/style.css +++ b/style.css @@ -85,7 +85,6 @@ body { left: 50%; transform: translate(-50%, -50%); min-width: 20em; - min-height: 30em; max-height: 100%; max-width: 30em; overflow: auto; @@ -130,6 +129,8 @@ blockquote { margin: .5em; padding: .5em; quotes: "\201C""\201D""\2018""\2019"; + /* Otherwise the :before is larger than the blockquote and creates a scrollbar in the parent */ + min-height: 3em; } blockquote:before { color: #1a1c1c66;