1
0
Fork 0
mirror of https://github.com/sussy-code/smov.git synced 2024-12-20 14:37:43 +01:00

Fix download button

This commit is contained in:
Jip Fr 2023-10-24 13:25:42 +02:00
parent 9bd31071f9
commit faed749691

View file

@ -1,5 +1,6 @@
import { useMemo } from "react";
import { Button } from "@/components/Button";
import { Icon, Icons } from "@/components/Icon";
import { OverlayPage } from "@/components/overlays/OverlayPage";
import { Menu } from "@/components/player/internals/ContextMenu";
@ -49,15 +50,9 @@ export function DownloadView({ id }: { id: string }) {
have control over how the downloads are provided.
</Menu.Paragraph>
<a
href={downloadUrl}
rel="noreferrer"
target="_blank"
download
className="cursor-pointer flex justify-center items-center w-full p-2.5 !mt-6 rounded-lg bg-video-context-download-button hover:bg-video-context-download-hover transition-colors duration-150 text-white font-medium"
>
<Button className="w-full" href={downloadUrl} theme="purple">
Download
</a>
</Button>
</div>
</Menu.Section>
</>