mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-03-30 03:44:57 +03:00
fix overflow due to radix absolutely positioned elements
This commit is contained in:
parent
e6feca45fb
commit
86ad5a5f29
@ -93,7 +93,7 @@ export function AudioLabelSwitchesWidget(props: WidgetProps) {
|
|||||||
getDisplayLabel: getAudioLabelDisplayName,
|
getDisplayLabel: getAudioLabelDisplayName,
|
||||||
i18nKey: "audioLabels",
|
i18nKey: "audioLabels",
|
||||||
listClassName:
|
listClassName:
|
||||||
"max-h-none overflow-visible md:max-h-64 md:overflow-y-auto md:overscroll-contain md:scrollbar-container",
|
"relative max-h-none overflow-visible md:max-h-64 md:overflow-y-auto md:overscroll-contain md:scrollbar-container",
|
||||||
enableSearch: true,
|
enableSearch: true,
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
|
|||||||
@ -94,7 +94,7 @@ export function ObjectLabelSwitchesWidget(props: WidgetProps) {
|
|||||||
getDisplayLabel: getObjectLabelDisplayName,
|
getDisplayLabel: getObjectLabelDisplayName,
|
||||||
i18nKey: "objectLabels",
|
i18nKey: "objectLabels",
|
||||||
listClassName:
|
listClassName:
|
||||||
"max-h-none overflow-visible md:max-h-64 md:overflow-y-auto md:overscroll-contain md:scrollbar-container",
|
"relative max-h-none overflow-visible md:max-h-64 md:overflow-y-auto md:overscroll-contain md:scrollbar-container",
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
|
|||||||
@ -42,7 +42,7 @@ export function ZoneSwitchesWidget(props: WidgetProps) {
|
|||||||
getEntities: getZoneNames,
|
getEntities: getZoneNames,
|
||||||
getDisplayLabel: getZoneDisplayName,
|
getDisplayLabel: getZoneDisplayName,
|
||||||
i18nKey: "zoneNames",
|
i18nKey: "zoneNames",
|
||||||
listClassName: "max-h-64 overflow-y-auto scrollbar-container",
|
listClassName: "relative max-h-64 overflow-y-auto scrollbar-container",
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user