feat: apply figma browse mobile redesign
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
import { ArrowDownToLine, LoaderCircle } from "lucide-react";
|
||||
import { LoaderCircle } from "lucide-react";
|
||||
import { DownloadCloudIcon } from "../icons/DownloadCloudIcon";
|
||||
import { useState, type MouseEvent } from "react";
|
||||
import { useI18n } from "../../i18n";
|
||||
import type { Attachment } from "../../types/post";
|
||||
@@ -35,20 +36,23 @@ export function AttachmentDownloadPill({
|
||||
type="button"
|
||||
onClick={handleDownload}
|
||||
disabled={isDownloading}
|
||||
className={`group z-10 inline-flex overflow-hidden rounded-full bg-black/45 text-[10px] text-white shadow-lg ring-1 ring-white/15 backdrop-blur-md transition hover:bg-black/60 disabled:cursor-wait ${className}`}
|
||||
className={`group z-10 inline-flex overflow-hidden rounded-full bg-black/80 text-[11px] text-white shadow-lg ring-1 ring-inset ring-white/20 backdrop-blur-md transition hover:bg-black/90 disabled:cursor-wait ${className}`}
|
||||
aria-label={
|
||||
isDownloading ? t("downloading") : `Download ${attachment.filename}`
|
||||
}
|
||||
aria-busy={isDownloading}
|
||||
>
|
||||
<span className="flex h-6 w-6 items-center justify-center bg-white/10 transition group-hover:bg-white/15">
|
||||
<span className="flex h-6 w-6 items-center justify-center bg-[#545454]/50 transition group-hover:bg-[#545454]/70">
|
||||
{isDownloading ? (
|
||||
<LoaderCircle className="h-3 w-3 animate-spin" strokeWidth={2.3} />
|
||||
<LoaderCircle
|
||||
className="h-3.5 w-3.5 animate-spin"
|
||||
strokeWidth={2.3}
|
||||
/>
|
||||
) : (
|
||||
<ArrowDownToLine className="h-3 w-3" strokeWidth={2.3} />
|
||||
<DownloadCloudIcon className="h-3.5 w-3.5" />
|
||||
)}
|
||||
</span>
|
||||
<span className="flex h-6 items-center gap-0.5 px-1.5">
|
||||
<span className="flex h-6 items-center gap-0.5 px-2">
|
||||
{isDownloading ? (
|
||||
t("downloading")
|
||||
) : (
|
||||
|
||||
Reference in New Issue
Block a user