From 20ef2c66563a3c70cffc80631ac6ceabc06f6512 Mon Sep 17 00:00:00 2001 From: Patric Stout Date: Sun, 3 Dec 2023 11:55:06 +0100 Subject: [PATCH] fix: hull-listing overflows with 5 pixels on the bottom (#34) --- src/HullListing/HullListing.module.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/HullListing/HullListing.module.css b/src/HullListing/HullListing.module.css index 870769b..ffe7ef1 100644 --- a/src/HullListing/HullListing.module.css +++ b/src/HullListing/HullListing.module.css @@ -8,7 +8,7 @@ } .listingContent { - height: calc(100% - 42px - 32px); + height: calc(100% - 42px - 32px - 5px); padding-right: 20px; overflow-y: auto; }