|
@@ -3,7 +3,7 @@ import { GameListRep, searchGameListApi, SearchProps } from "@/api/home";
|
|
|
import GroupCard from "@/components/Card/GroupCard";
|
|
|
import { useRouter } from "@/i18n/routing";
|
|
|
import { useSearchStore } from "@/stores/useSearchStore";
|
|
|
-import { Button, createErrorBlock, Mask, SearchBar } from "antd-mobile";
|
|
|
+import { Button, createErrorBlock, SearchBar } from "antd-mobile";
|
|
|
import { useTranslations } from "next-intl";
|
|
|
import { ChangeEvent, FC, MouseEvent, PropsWithChildren, useRef, useState } from "react";
|
|
|
interface Props {}
|
|
@@ -189,19 +189,19 @@ const HomeSearch: FC<PropsWithChildren<Props>> = (props) => {
|
|
|
<div
|
|
|
onClick={handler}
|
|
|
className={
|
|
|
- "flex items-center rounded-[0.03rem] rounded-[0.15rem] border border-[var(--primary-button)] px-[6px] py-[6px] text-[#6e6e6e]"
|
|
|
+ "flex items-center rounded-[0.03rem] rounded-[0.1rem] border border-[var(--primary-button)] px-[6px] py-[4px] text-[#6e6e6e]"
|
|
|
}
|
|
|
>
|
|
|
<i
|
|
|
className={
|
|
|
- "iconfont icon-sousuo mr-[0.0833rem] text-[0.16rem] text-[var(--textColor1)]"
|
|
|
+ "iconfont icon-sousuo mr-[0.0833rem] text-[0.14rem] text-[var(--textColor1)]"
|
|
|
}
|
|
|
></i>
|
|
|
- <span className={"text-[0.12rem] text-[var(--textColor1)]"}>{t("search")}</span>
|
|
|
+ <span className={"text-[0.12rem] text-[var(--textColor2)]"}>Nome do Jogo</span>
|
|
|
</div>
|
|
|
- <Mask visible={visible} opacity={0.9} getContainer={null}>
|
|
|
+ {/* <Mask visible={visible} opacity={0.9} getContainer={null}>
|
|
|
<Content closeHandler={() => setVisible(false)} />
|
|
|
- </Mask>
|
|
|
+ </Mask> */}
|
|
|
</>
|
|
|
);
|
|
|
};
|