From 831b72040f46f17ee5ce68267c3489c01e9c8e1d Mon Sep 17 00:00:00 2001 From: VodBox Date: Thu, 9 Jan 2025 15:57:11 +1100 Subject: [PATCH] fix(cookie-clicker): hide scrollbars On Windows, the scrollbars take up fixed size and have very clear Windows stylings, which doesn't match the preview video on the PR which shows overlay scrollbars. Since scrolling is ran programmatically anyway, I've hidden the scrollbar. --- src/channels/cookie-clicker/components.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/channels/cookie-clicker/components.tsx b/src/channels/cookie-clicker/components.tsx index 5cf8029..357e1ef 100644 --- a/src/channels/cookie-clicker/components.tsx +++ b/src/channels/cookie-clicker/components.tsx @@ -246,7 +246,7 @@ export const VerticalSection = styled.div` height: 100%; background-size: 100% 100%; background-repeat: no-repeat; - overflow-y: scroll; + overflow-y: hidden; overflow-x: hidden; `;