diff --git a/Makefile b/Makefile index f97097e..bdb0843 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,8 @@ BINARY = poc-zeitkort-web .PHONY: build run clean -build: +build: clean + go clean -cache CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o ./bin/$(BINARY) . run: build diff --git a/static/app.css b/static/app.css index 339ab7e..06287fc 100644 --- a/static/app.css +++ b/static/app.css @@ -585,26 +585,25 @@ details.confirm[open]::before { .clock { font-size: 0.85rem; } - .running-bar { + .reset-banner { position: fixed; - bottom: 3.5rem; left: 1rem; + bottom: 1rem; top: auto; - z-index: 15; + justify-content: flex-start; gap: 8px; + max-width: calc(100vw - 2rem); padding: 6px 10px; - border-radius: 4px; + border: 1px solid var(--error-border); + border-radius: 999px; font-size: 0.7rem; - max-width: 280px; - margin: 0; + text-align: left; } - .rb-task { - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; + .reset-countdown { + font-size: 0.9rem; + padding: 1px 8px; + border-radius: 999px; } - .running-bar .go { - font-size: 0.65rem; - padding: 2px 8px; + .reset-note { + display: none; } -}