From e5f02f078232e4b98fcecc17ea775ec50facbdc6 Mon Sep 17 00:00:00 2001 From: "Gu://em_" Date: Mon, 13 Apr 2026 19:37:07 +0200 Subject: [PATCH 1/2] Disabled highlight square when tapping a button on mobile --- src/pages/index.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/pages/index.css b/src/pages/index.css index 6e956bb..52d1379 100644 --- a/src/pages/index.css +++ b/src/pages/index.css @@ -22,6 +22,9 @@ body { padding: 0; font-family: "Inter"; + + /* Disable the blue square when you tap a button on mobile */ + -webkit-tap-highlight-color: transparent; } /*-Texts-----------------------------*/ From 28f9168276ecaf82c62a3cf199c719646076405d Mon Sep 17 00:00:00 2001 From: "Gu://em_" Date: Mon, 13 Apr 2026 19:45:36 +0200 Subject: [PATCH 2/2] Attempt to use a NodeJS-ready image instead of the previous generic one --- .forgejo/workflows/deploy.yaml | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/.forgejo/workflows/deploy.yaml b/.forgejo/workflows/deploy.yaml index fee3198..3d171fc 100644 --- a/.forgejo/workflows/deploy.yaml +++ b/.forgejo/workflows/deploy.yaml @@ -21,6 +21,8 @@ jobs: strategy: matrix: include: *site_matrix + container: + image: node:22-bookworm steps: - name: Checkout git repository @@ -35,15 +37,8 @@ jobs: token: ${{ secrets.CONFIG_REPO_TOKEN }} path: "configs" - - name: Install pnpm - uses: pnpm/action-setup@v4 - with: - version: 10 - - - name: Setup Nodejs - uses: actions/setup-node@v4 - with: - node-version: 22 + - name: Enable pnpm + run: corepack enable && corepack prepare pnpm@latest --activate - name: Install dependencies and config run: |