mirror of
https://github.com/SrIzan10/hctv.git
synced 2026-06-06 00:56:56 +00:00
fix(ui): last commit fixed arrows but this should fix all users from showing
This commit is contained in:
@@ -62,7 +62,7 @@ export default async function RootLayout({
|
||||
<div className="flex flex-1 pt-16">
|
||||
{/* pt-16 for navbar height */}
|
||||
<Sidebar className="pt-16" />
|
||||
<main className="flex-1 overflow-auto">{children}</main>
|
||||
<main className="flex-1 overflow-y-auto overflow-x-hidden">{children}</main>
|
||||
</div>
|
||||
<Toaster />
|
||||
</StreamInfoProvider>
|
||||
|
||||
@@ -56,7 +56,7 @@ export default function StreamGrid({ liveStreams, offlineStreams }: StreamGridPr
|
||||
<section>
|
||||
<SectionHeading label="Offline channels" count={offlineStreams.length} />
|
||||
<div className="px-10">
|
||||
<Carousel opts={{ align: 'start', dragFree: true, containScroll: 'trimSnaps' }}>
|
||||
<Carousel className="w-full" opts={{ align: 'start', dragFree: true, containScroll: 'trimSnaps' }}>
|
||||
<CarouselContent className="-ml-2">
|
||||
{offlineStreams.map((stream) => (
|
||||
<CarouselItem key={stream.id} className="basis-auto pl-2">
|
||||
|
||||
Reference in New Issue
Block a user