mirror of
https://github.com/Dispatcharr/Dispatcharr.git
synced 2026-07-28 12:36:42 +00:00
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:
parent
91eaa64ebb
commit
fa2a90fab4
2 changed files with 12 additions and 0 deletions
|
|
@ -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}
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue