Made navbar responsive

This commit is contained in:
2025-02-06 10:47:36 +11:00
parent b6feed7c0c
commit 1c30007af4
10 changed files with 308 additions and 1633 deletions

View File

@@ -3,19 +3,16 @@
BINARY_NAME=projectreshoot
# build builds the tailwind css sheet, and compiles the binary into a usable thing.
build:
go mod tidy && \
templ generate && \
go generate && \
go build -ldflags="-w -s" -o ${BINARY_NAME}
# dev runs the development server where it builds the tailwind css sheet,
# and compiles the project whenever a file is changed.
dev:
npx tailwindcss -i ./static/css/input.css -o ./static/css/output.css --watch &\
templ generate --watch --cmd="go generate" &\
templ generate --watch --cmd="go run ."
templ generate --watch &\
air &\
tailwindcss -i ./static/css/input.css -o ./static/css/output.css --watch
clean:
go clean