From 844ba08eee550b65bb18d530093ecf606eeca1c0 Mon Sep 17 00:00:00 2001 From: Fen Dweller Date: Mon, 3 Feb 2020 13:08:32 -0500 Subject: [PATCH] Force the size of the world to stay constant to fix weird bug with filters Without a max-height constraining the height of the world, it stretched a little bit when applying a filter to any of the entities --- macrovision.css | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/macrovision.css b/macrovision.css index 7e5da5ce..79afc926 100644 --- a/macrovision.css +++ b/macrovision.css @@ -27,7 +27,7 @@ body { } .selected { - filter: drop-shadow(0px 0px 10px gold); + filter: drop-shadow(0px 0px 15px gold); } #main-area { @@ -49,7 +49,8 @@ body { #world { flex: 9 0 85vw; - min-height: 80vh; + min-height: 90vh; + max-height: 90vh; overflow: hidden; }