Skip to content

Commit

Permalink
fix: 모바일 대응 textarea disabled style 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
Jungjjeong committed Jan 26, 2025
1 parent 000be10 commit c8d93c1
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
8 changes: 8 additions & 0 deletions app/components/rabbit-card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,14 @@ const textareaCss = css`
white-space: pre-line;
color: #8e8e8e;
}
/* disabled style (모바일 대응) */
&:disabled {
color: black;
background-color: transparent;
-webkit-text-fill-color: black;
opacity: 1;
}
`;

const underlineCss = css`
Expand Down
1 change: 1 addition & 0 deletions app/hooks/apis/useGetPlayerGameInfos.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,6 @@ export const useGetPlayerGameInfos = (req: Req) => {
return useQuery({
queryKey: ["playerNames", req.id],
queryFn: () => getPlayerGameInfos(req),
retry: 2
});
};

0 comments on commit c8d93c1

Please sign in to comment.