diff --git a/Backend/static/css/styles.css b/Backend/static/css/styles.css index e8bb3df..243660e 100644 --- a/Backend/static/css/styles.css +++ b/Backend/static/css/styles.css @@ -556,9 +556,6 @@ .mt-1 { margin-top: calc(var(--spacing) * 1); } - .mt-auto { - margin-top: auto; - } .mb-2 { margin-bottom: calc(var(--spacing) * 2); } @@ -615,9 +612,6 @@ .grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); } - .grid-cols-subgrid { - grid-template-columns: subgrid; - } .flex-col { flex-direction: column; } diff --git a/Makefile b/Makefile index 7ac133f..210097e 100644 --- a/Makefile +++ b/Makefile @@ -37,6 +37,11 @@ full_%: make build_$* make push_$* -backend: login_registry +generateFrontend: + cd Backend && templ generate + cd Backend && npx @tailwindcss/cli -i ./src/main.css -o ./static/css/styles.css + + +backend: generateFrontend login_registry docker buildx build --platform linux/amd64,linux/arm64 -t git.letsstein.de/tom/arbeitszeit-backend:latest Backend --push docker buildx build --platform linux/amd64,linux/arm64 -t git.letsstein.de/tom/arbeitszeit-backend:${GIT_COMMIT} Backend --push