(RESOLVED)
Currently, I am developing a movie app that displays film titles through an Accordion feature using Bootstrap. Specifically, I have created an Accordion that showcases movies added to a favorites list.
The intention is for this favorites section to be scrollable from left to right. To achieve this in the CSS code for .accordion-body, I included the following:
.accordion-body {
background-color: var(--primary-bg);
width: 950px;
margin: 0 auto;
border: none;
overflow-x: scroll;
display: flex;
border: 2px solid var(--primary);
}
VIEW SCREENSHOT However, despite the setup, the scrollbar does not visibly appear on the screen when scrolling with a mouse cursor. It only shows up if I physically touch and scroll my laptop's screen with a finger. I require assistance in resolving this issue to ensure proper visibility of the scrollbar. Thank you!