diff --git a/homelab/runner/docker-compose.yml b/homelab/runner/docker-compose.yml index 655218e..1bc381b 100644 --- a/homelab/runner/docker-compose.yml +++ b/homelab/runner/docker-compose.yml @@ -29,7 +29,7 @@ services: - libretranslate_models:/home/libretranslate/.local/share/argos-translate - libretranslate_db:/app/db healthcheck: - test: ["CMD-SHELL", "curl -sf http://localhost:5000/languages || exit 1"] + test: ["CMD", "python3", "-c", "import urllib.request,sys; urllib.request.urlopen('http://localhost:5000/languages'); sys.exit(0)"] interval: 30s timeout: 10s retries: 5 diff --git a/ui/src/app.css b/ui/src/app.css index 1491ed1..0aa4cd6 100644 --- a/ui/src/app.css +++ b/ui/src/app.css @@ -147,6 +147,15 @@ html { margin: 2em 0; } +/* ── Hide scrollbars (used on horizontal carousels) ────────────────── */ +.scrollbar-none { + scrollbar-width: none; /* Firefox */ + -ms-overflow-style: none; /* IE / Edge legacy */ +} +.scrollbar-none::-webkit-scrollbar { + display: none; /* Chrome / Safari / WebKit */ +} + /* ── Navigation progress bar ───────────────────────────────────────── */ @keyframes progress-bar { 0% { width: 0%; opacity: 1; }