Skip to content

Commit

Permalink
refactor: 매칭 결과 플로팅 버튼 이미지에 대체 텍스트 추가 #336
Browse files Browse the repository at this point in the history
  • Loading branch information
useon committed Oct 16, 2024
1 parent 4bcb919 commit bd58770
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/components/GameResult/GameResult.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,12 @@ const GameResult = () => {

{existMatching && !isAtTop && (
<button onClick={scrollToTop} css={floatingButton('up')}>
<img src={ArrowUp} alt="" />
<img src={ArrowUp} alt="가장 높은 순위로 이동" />
</button>
)}
{existMatching && !isAtBottom && (
<button onClick={scrollToBottom} css={floatingButton('down')}>
<img src={ArrowDown} alt="" />
<img src={ArrowDown} alt="가장 낮은 순위로 이동" />
</button>
)}
</div>
Expand Down

0 comments on commit bd58770

Please sign in to comment.