mirror of
https://github.com/blakeblackshear/frigate.git
synced 2025-12-08 22:35:42 +03:00
prevent x overflow in detail stream on mobile safari
This commit is contained in:
parent
1d94b24cfe
commit
6258b90e91
@ -192,7 +192,7 @@ export default function DetailStream({
|
||||
<div className="relative flex h-full flex-col">
|
||||
<div
|
||||
ref={scrollRef}
|
||||
className="scrollbar-container flex-1 overflow-y-auto pb-14"
|
||||
className="scrollbar-container flex-1 overflow-y-auto overflow-x-hidden pb-14"
|
||||
>
|
||||
<div className="space-y-4 py-2">
|
||||
{reviewItems?.length === 0 ? (
|
||||
|
||||
Loading…
Reference in New Issue
Block a user