mirror of
https://github.com/sussy-code/smov.git
synced 2024-12-29 16:07:40 +01:00
commit
9850f734ea
4 changed files with 5 additions and 5 deletions
|
@ -179,7 +179,7 @@
|
||||||
"disclaimer": "Downloads be taken directly from the provider. movie-web does not have control over how the downloads be provided.",
|
"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",
|
"hlsExplanation": "Insert explanation for why ye can't download HLS here",
|
||||||
"downloadVideo": "Download film",
|
"downloadVideo": "Download film",
|
||||||
"downloadCaption": "Download current sea shanty",
|
"downloadCaption": "Download sea shanty",
|
||||||
"onPc": {
|
"onPc": {
|
||||||
"1": "On PC, right click the film and select <bold>Save film as</bold>",
|
"1": "On PC, right click the film and select <bold>Save film as</bold>",
|
||||||
"title": "Downloadin' on PC",
|
"title": "Downloadin' on PC",
|
||||||
|
|
|
@ -47,7 +47,7 @@ export function OverlayPage(props: Props) {
|
||||||
show={show}
|
show={show}
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
className={classNames([props.className, ""])}
|
className={classNames(["grid grid-rows-1 max-h-full", props.className])}
|
||||||
style={{
|
style={{
|
||||||
height: props.height ? `${props.height}px` : undefined,
|
height: props.height ? `${props.height}px` : undefined,
|
||||||
width: props.width ? width : undefined,
|
width: props.width ? width : undefined,
|
||||||
|
|
|
@ -75,7 +75,7 @@ function RouterBase(props: { id: string; children: ReactNode }) {
|
||||||
<a.div
|
<a.div
|
||||||
ref={ref}
|
ref={ref}
|
||||||
style={dimensions}
|
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.Base className="group w-full bg-video-context-border h-full rounded-2xl transition-colors duration-100 text-video-context-type-main">
|
||||||
<Flare.Light
|
<Flare.Light
|
||||||
|
@ -84,7 +84,7 @@ function RouterBase(props: { id: string; children: ReactNode }) {
|
||||||
backgroundClass="bg-video-context-background duration-100"
|
backgroundClass="bg-video-context-background duration-100"
|
||||||
className="rounded-2xl opacity-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}
|
{props.children}
|
||||||
</Flare.Child>
|
</Flare.Child>
|
||||||
</Flare.Base>
|
</Flare.Base>
|
||||||
|
|
|
@ -36,7 +36,7 @@ export function CaptionOption(props: {
|
||||||
data-active-link={props.selected ? true : undefined}
|
data-active-link={props.selected ? true : undefined}
|
||||||
className="flex items-center"
|
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} />
|
<FlagIcon countryCode={props.countryCode} />
|
||||||
</span>
|
</span>
|
||||||
<span>{props.children}</span>
|
<span>{props.children}</span>
|
||||||
|
|
Loading…
Reference in a new issue