From 098f01ea639226f2fb33aea6a81be592d7166475 Mon Sep 17 00:00:00 2001 From: Fen Dweller Date: Fri, 24 Apr 2020 19:33:44 -0400 Subject: [PATCH] Fix small things moving down a small amount The font-size of the div containing each image was causing the images to start shifting downward when their height dropped below the font-size. --- macrovision.css | 1 + 1 file changed, 1 insertion(+) diff --git a/macrovision.css b/macrovision.css index 7f0d0142..17db4c3a 100644 --- a/macrovision.css +++ b/macrovision.css @@ -24,6 +24,7 @@ body { .entity-box { position: absolute; --height: 100px; + font-size: 0pt; max-height: var(--height); height: var(--height); text-align: center;