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
This commit is contained in:
Wolfsblvt
2025-03-10 15:35:01 +01:00
parent 73230272f3
commit e3bcc79bb7

View File

@@ -1,6 +1,5 @@
.scrollable-buttons-container { .scrollable-buttons-container {
max-height: 50vh; /* Use viewport height instead of fixed pixels */ max-height: 50vh; /* Use viewport height instead of fixed pixels */
overflow-y: auto;
-webkit-overflow-scrolling: touch; /* Momentum scrolling on iOS */ -webkit-overflow-scrolling: touch; /* Momentum scrolling on iOS */
margin-top: 1rem; /* m-t-1 is equivalent to margin-top: 1rem; */ margin-top: 1rem; /* m-t-1 is equivalent to margin-top: 1rem; */
flex-shrink: 1; flex-shrink: 1;