mirror of
https://github.com/zoriya/v10.git
synced 2026-08-16 02:45:09 +00:00
9 lines
283 B
TypeScript
9 lines
283 B
TypeScript
import { cn } from '@videojs/utils/style';
|
|
|
|
export const surface = cn(
|
|
// Border and shadow
|
|
'ring ring-inset shadow-sm',
|
|
// Border to enhance contrast on lighter videos
|
|
'after:absolute after:inset-0 after:ring after:rounded-[inherit] after:pointer-events-none after:z-10'
|
|
);
|