Bug fix: Remove bottom horizontal scroll bar from TV Guide, it was not synced with the guide and served no purpose.

This commit is contained in:
SergeantPanda 2025-10-18 14:07:34 -05:00
parent 91eaa64ebb
commit fa2a90fab4
2 changed files with 12 additions and 0 deletions

View file

@ -1477,6 +1477,7 @@ export default function TVChannelGuide({ startDate, endDate }) {
{filteredChannels.length > 0 ? (
<VariableSizeList
className="guide-list-outer"
height={virtualizedHeight}
width={virtualizedWidth}
itemCount={filteredChannels.length}

View file

@ -67,3 +67,14 @@
.tv-guide {
position: relative;
}
/* Hide bottom horizontal scrollbar for the guide's virtualized list only */
.tv-guide .guide-list-outer {
/* Prevent horizontal page scrollbar while preserving internal scroll behavior */
overflow-x: hidden !important;
}
/* Also hide scrollbars visually across browsers for the outer container */
.tv-guide .guide-list-outer::-webkit-scrollbar {
height: 0px;
}