|
@@ -42,7 +42,7 @@ const Desktop = forwardRef<DesktopRefProps, Props>(function Desktop(props, ref)
|
|
|
getContainer={elementRef.current}
|
|
|
bodyStyle={{ padding: "0.2rem", background: "#fff" }}
|
|
|
>
|
|
|
- <div className={"flex text-[0.12rem] text-[#8d8d8d]"}>
|
|
|
+ <div className={"flex text-[0.14rem] text-[#8d8d8d]"}>
|
|
|
<Image
|
|
|
src={"/icon-192x192.png"}
|
|
|
alt={"logo"}
|
|
@@ -54,23 +54,23 @@ const Desktop = forwardRef<DesktopRefProps, Props>(function Desktop(props, ref)
|
|
|
</div>
|
|
|
<div className={"mb-[0.16rem] mt-[0.1rem] text-right"}>
|
|
|
<Button
|
|
|
- color="default"
|
|
|
- className={"mr-[10px]"}
|
|
|
- style={{ "--text-color": "#8d8d8d" }}
|
|
|
- fill="none"
|
|
|
- onClick={cancel}
|
|
|
+ color="default"
|
|
|
+ className={"mr-[10px]"}
|
|
|
+ style={{ "--text-color": "#8d8d8d" }}
|
|
|
+ fill="none"
|
|
|
+ onClick={cancel}
|
|
|
>
|
|
|
- {t("cancel")}
|
|
|
+ {t("cancel")}
|
|
|
</Button>
|
|
|
<Button
|
|
|
- color="primary"
|
|
|
- style={{
|
|
|
- "--text-color": "#ff6a01",
|
|
|
- "--border-color": "#ff6a01",
|
|
|
- "--border-radius": "10px",
|
|
|
- }}
|
|
|
- fill="outline"
|
|
|
- onClick={downloadHandler}
|
|
|
+ color="primary"
|
|
|
+ style={{
|
|
|
+ "--text-color": "#ff6a01",
|
|
|
+ "--border-color": "#ff6a01",
|
|
|
+ "--border-radius": "10px",
|
|
|
+ }}
|
|
|
+ fill="outline"
|
|
|
+ onClick={downloadHandler}
|
|
|
>
|
|
|
{t("save")}
|
|
|
</Button>
|