As stated in the title. Form results scoll vertically down the page. The only way to view them is by placing the cursor on the page and using the up/down arrows or PgUp/PgDn keys because the vertical scroll bar on the right is missing. Please fix this.
1 Like
same problem here and it can take ages to go to top/bottom or find what a user is looking for
@jjacoby and @ryano562 not sure if this helps but I needed these scrollbars visible… this code does this (just watch the colour #888… this is selected for my theme which is dark and so you’ll need to pick a colour to replace this relevant to your theme.
Hope its useful.
<script>
const style = document.createElement('style');
style.textContent = `
/* Applies to any scrollable div using overflow classes like overflow-x-auto etc. */
div[class*="overflow-"]::-webkit-scrollbar {
width: 6px;
height: 6px;
}
div[class*="overflow-"]::-webkit-scrollbar-thumb {
background-color: #888; /* Light grey */
border-radius: 8px;
}
div[class*="overflow-"]::-webkit-scrollbar-track {
background: transparent;
}
/* Optional: Firefox support */
div[class*="overflow-"] {
scrollbar-color: #888 transparent;
scrollbar-width: thin;
}
`;
document.head.appendChild(style);
</script>
Thank you, but this is a design flaw / bug that should not require custom code.
Noted but as a fellow user, I’m just try to help with an interim solution.