Forum Discussion
CristianaRat103
2 years agoCommunity Member
Scrolling Panel scroll bar size
I need to insert a scrolling panel with text into a slide, but my scroll bar is so small. I don't think my learners will all be able to access it, and it is very hard to see. How can I increase th...
Nedim
18 hours agoCommunity Member
Unfortunately, the possible solution involves JavaScript, but it's easy to target and adjust the scrollbar width. The default scrollbar width is set to 10px. Ecexute JavScript when the timeline starts on this slide:
const scrollbar = document.querySelector('.high-contrast-scroll.scrollarea-scrollbar');
scrollbar.style.setProperty('--scroll-width', '18px');