fix(skin): add missing classnames to tailwind menus (#1712)

This commit is contained in:
Sam Potts
2026-06-19 14:23:24 +10:00
committed by GitHub
parent 17d6ebfc30
commit ff694a0dd8
@@ -1,6 +1,7 @@
import { cn } from '@videojs/utils/style';
import { popup } from './popup';
import { surface } from './surface';
const panelBase = cn(
'absolute inset-0 overflow-auto overscroll-none p-1 outline-none translate-none',
@@ -44,6 +45,7 @@ const menuTokens = cn(
const menuHostShell = cn(
popup.popover,
surface,
menuTokens,
'max-w-(--media-popover-available-width,none) max-h-[min(var(--media-popover-available-height,var(--menu-max-height)),var(--menu-max-height))]',
'box-border rounded-xl p-1 overscroll-none'