From 3d88f23e886ea8ecd42ed526555cc05bd3cd9144 Mon Sep 17 00:00:00 2001 From: Corwin Perren Date: Wed, 9 Jul 2025 03:48:40 -0700 Subject: [PATCH] Fix broken .env write in Dockerfile, add footer border style --- Dockerfile | 2 +- src/styles/global.css | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index aaff9d6..882588c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -21,7 +21,7 @@ ARG PROJECT_VERSION RUN echo "PUBLIC_REPO_VERSION_HASH=/"${REPO_VERSION_HASH}/" \n\ BUILD_ENVIRONMENT=/"${BUILD_ENVIRONMENT}/" \n\ - PUBLIC_PROJECT_VERSION=/"${PROJECT_VERSION}/"" >> nope + PUBLIC_PROJECT_VERSION=/"${PROJECT_VERSION}/"" >> .env RUN npm run build FROM httpd:latest AS runtime diff --git a/src/styles/global.css b/src/styles/global.css index 40326de..235b882 100644 --- a/src/styles/global.css +++ b/src/styles/global.css @@ -24,6 +24,10 @@ a { white-space: nowrap; } + +footer { + border-top: 2px solid var(--color-caperren-green); +} /*.astronav-dropdown .group {*/ /* background-color: black;*/ /*}*/ \ No newline at end of file