diff --git a/Makefile b/Makefile index 4925b72..e2bc221 100644 --- a/Makefile +++ b/Makefile @@ -1,35 +1,7 @@ -.PHONY: build-development -build-development: ## Build the development docker image. - docker compose -f docker/development/docker-compose.yml build - -.PHONY: start-development -start-development: ## Start the development docker container. - docker compose -f docker/development/docker-compose.yml up -d - -.PHONY: stop-development -stop-development: ## Stop the development docker container. - docker compose -f docker/development/docker-compose.yml down - -.PHONY: build-staging -build-staging: ## Build the staging docker image. - docker compose -f docker/staging/docker-compose.yml build - -.PHONY: start-staging -start-staging: ## Start the staging docker container. - docker compose -f docker/staging/docker-compose.yml up -d - -.PHONY: stop-staging -stop-staging: ## Stop the staging docker container. - docker compose -f docker/staging/docker-compose.yml down - .PHONY: build-production build-production: ## Build the production docker image. - docker build --network=host --file Dockerfile --tag kakawa:latest . - -.PHONY: start-production -start-production: ## Start the production docker container. - docker compose -f docker/production/docker-compose.yml up -d - -.PHONY: stop-production -stop-production: ## Stop the production docker container. - docker compose -f docker/production/docker-compose.yml down \ No newline at end of file + @docker buildx build \ + --network=host \ + --tag kakawa:latest \ + $(shell grep -v '^#' .env.local | sed 's/^/--build-arg /') \ + git@git.tanshu.com:tanshu/kakawa.git \ No newline at end of file diff --git a/src/app/(static)/festival/page.tsx b/src/app/(static)/festival/page.tsx index 0460845..eeec5c3 100644 --- a/src/app/(static)/festival/page.tsx +++ b/src/app/(static)/festival/page.tsx @@ -20,7 +20,7 @@ export default function FestivalPage() { = 768px) { - .productImage { - display: none; + @media (max-width: 768px) { + .grid { + grid-template-columns: repeat(2, 1fr); /* Still 4 columns */ + } } - }