fix mobile tap to open links with touchend and CSS

This commit is contained in:
vndangkhoa 2026-04-29 15:46:21 +07:00
parent ad93f47e00
commit 0817d6a367
2 changed files with 6 additions and 0 deletions

View file

@ -113,6 +113,7 @@ function TetrisPiece({ piece, isDark }) {
onMouseEnter={handleMouseEnter}
onMouseLeave={handleMouseLeave}
onClick={handleClick}
onTouchEnd={handleClick}
>
<a
href={piece.link}

View file

@ -24,6 +24,11 @@
* { margin: 0; padding: 0; box-sizing: border-box; }
.tetris-piece, .tetris-piece * {
touch-action: manipulation;
-webkit-tap-highlight-color: transparent;
}
html, body {
width: 100%;
overflow-x: hidden;