From e3bcc79bb7ffc9069f48d7b00c7c762b96679460 Mon Sep 17 00:00:00 2001 From: Wolfsblvt Date: Mon, 10 Mar 2025 15:35:01 +0100 Subject: [PATCH] Fix /buttons buttons not being displayed - On long popup texts, the buttons of the `/popup` slash command will not be displayed, cause by an unneeded overflow CSS property Fixes #3654 --- public/css/scrollable-button.css | 1 - 1 file changed, 1 deletion(-) diff --git a/public/css/scrollable-button.css b/public/css/scrollable-button.css index c77032a1e..9cee2c67a 100644 --- a/public/css/scrollable-button.css +++ b/public/css/scrollable-button.css @@ -1,6 +1,5 @@ .scrollable-buttons-container { max-height: 50vh; /* Use viewport height instead of fixed pixels */ - overflow-y: auto; -webkit-overflow-scrolling: touch; /* Momentum scrolling on iOS */ margin-top: 1rem; /* m-t-1 is equivalent to margin-top: 1rem; */ flex-shrink: 1;