Skip to content

Commit c381876

Browse files
committed
Adjust positioning of reload button in multiplayer game interface for better alignment
1 parent ab76f2d commit c381876

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/home.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2559,7 +2559,7 @@ export default function Home({ }) {
25592559

25602560
{/* reload button for public game */}
25612561
{multiplayerState?.gameData?.duel && multiplayerState?.gameData?.state === "guess" && (
2562-
<div className="gameBtnContainer" style={{ position: 'fixed', top: width > 830 ? '90px' : '80px', left: width > 830 ? '10px' : '8px', zIndex: 1000000 }}>
2562+
<div className="gameBtnContainer" style={{ position: 'fixed', top: width > 830 ? '90px' : '90px', left: width > 830 ? '10px' : '7px', zIndex: 1000000 }}>
25632563

25642564
<button className="gameBtn navBtn backBtn reloadBtn" onClick={() => reloadBtnPressed()}><img src="/return.png" alt="reload" height={13} style={{ filter: 'invert(1)', transform: 'scale(1.5)' }} /></button>
25652565
</div>

0 commit comments

Comments
 (0)