From 27d978f232be43039e3020802acaecf3e21cb954 Mon Sep 17 00:00:00 2001 From: Ben Busby Date: Sat, 18 Sep 2021 21:19:05 -0600 Subject: [PATCH] Hide overflow on all result divs Mostly addresses the small amount of visible overflow on sections like "Top Stories". --- app/static/css/dark-theme.css | 1 + app/static/css/light-theme.css | 1 + 2 files changed, 2 insertions(+) diff --git a/app/static/css/dark-theme.css b/app/static/css/dark-theme.css index 6ac9bc8..d0a42c8 100644 --- a/app/static/css/dark-theme.css +++ b/app/static/css/dark-theme.css @@ -58,6 +58,7 @@ select { } .ZINbbc { + overflow: hidden; background-color: var(--whoogle-dark-result-bg) !important; } diff --git a/app/static/css/light-theme.css b/app/static/css/light-theme.css index f9c4dea..a083f73 100644 --- a/app/static/css/light-theme.css +++ b/app/static/css/light-theme.css @@ -33,6 +33,7 @@ select { } .ZINbbc { + overflow: hidden; background-color: var(--whoogle-result-bg) !important; }