Merge pull request #501 from movie-web/jip-fixes

Jip fixes
This commit is contained in:
mrjvs 2023-11-29 22:26:26 +01:00 committed by GitHub
commit 9850f734ea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 5 additions and 5 deletions

View File

@ -179,7 +179,7 @@
"disclaimer": "Downloads be taken directly from the provider. movie-web does not have control over how the downloads be provided.",
"hlsExplanation": "Insert explanation for why ye can't download HLS here",
"downloadVideo": "Download film",
"downloadCaption": "Download current sea shanty",
"downloadCaption": "Download sea shanty",
"onPc": {
"1": "On PC, right click the film and select <bold>Save film as</bold>",
"title": "Downloadin' on PC",

View File

@ -47,7 +47,7 @@ export function OverlayPage(props: Props) {
show={show}
>
<div
className={classNames([props.className, ""])}
className={classNames(["grid grid-rows-1 max-h-full", props.className])}
style={{
height: props.height ? `${props.height}px` : undefined,
width: props.width ? width : undefined,

View File

@ -75,7 +75,7 @@ function RouterBase(props: { id: string; children: ReactNode }) {
<a.div
ref={ref}
style={dimensions}
className="overflow-hidden relative z-10"
className="overflow-hidden relative z-10 max-h-full"
>
<Flare.Base className="group w-full bg-video-context-border h-full rounded-2xl transition-colors duration-100 text-video-context-type-main">
<Flare.Light
@ -84,7 +84,7 @@ function RouterBase(props: { id: string; children: ReactNode }) {
backgroundClass="bg-video-context-background duration-100"
className="rounded-2xl opacity-100"
/>
<Flare.Child className="pointer-events-auto relative transition-transform duration-100">
<Flare.Child className="pointer-events-auto relative transition-transform duration-100 h-full">
{props.children}
</Flare.Child>
</Flare.Base>

View File

@ -36,7 +36,7 @@ export function CaptionOption(props: {
data-active-link={props.selected ? true : undefined}
className="flex items-center"
>
<span data-code={props.countryCode} className="mr-3">
<span data-code={props.countryCode} className="mr-3 inline-flex">
<FlagIcon countryCode={props.countryCode} />
</span>
<span>{props.children}</span>