From 7e0cd360e9dfaf96128c5eb6b17793edab79b2b9 Mon Sep 17 00:00:00 2001 From: yanweidong Date: Fri, 31 Jul 2026 15:53:06 +0800 Subject: [PATCH] fix bug --- frontend/site/src/styles.css | 1 + scripts/build-backend.sh | 5 +++++ 2 files changed, 6 insertions(+) create mode 100644 scripts/build-backend.sh diff --git a/frontend/site/src/styles.css b/frontend/site/src/styles.css index 5df4196..3c0088e 100644 --- a/frontend/site/src/styles.css +++ b/frontend/site/src/styles.css @@ -154,6 +154,7 @@ a { flex-direction: column; gap: 24px; padding: 8px 10px 12px; + background: rgba(255, 255, 255, 0.62); border-radius: 14px; text-decoration: none; outline: none; diff --git a/scripts/build-backend.sh b/scripts/build-backend.sh new file mode 100644 index 0000000..139a513 --- /dev/null +++ b/scripts/build-backend.sh @@ -0,0 +1,5 @@ +#!/bin/bash + +cd ./backend/api + +GOARCH=amd64 GOOS=linux go build -o ../../output/heqiapp ./cmd/main/main.go