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