diff --git a/docker-compose.yml b/docker-compose.yml index b08be24..721b134 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -13,7 +13,7 @@ services: interval: 1s timeout: 5s retries: 3 - start_period: 3s + start_period: 1s dashboard: build: . @@ -30,12 +30,9 @@ services: - LOG_LEVEL=INFO volumes: - ./logs:/app/logs - depends_on: - redis: - condition: service_healthy healthcheck: test: ["CMD", "curl", "-f", "http://localhost:5000/api/health"] - interval: 30s + interval: 5s timeout: 10s retries: 3 diff --git a/static/css/boot.css b/static/css/boot.css index 354c7ff..13bffff 100644 --- a/static/css/boot.css +++ b/static/css/boot.css @@ -374,7 +374,7 @@ body.deepsea-theme { height: 200%; background: rgba(0, 0, 0, 0); pointer-events: none; - z-index: 1; + z-index: -1; background-image: radial-gradient(ellipse at top, rgba(0, 136, 204, 0.1) 0%, rgba(0, 136, 204, 0) 70%), radial-gradient(ellipse at bottom, rgba(0, 91, 138, 0.15) 0%, rgba(0, 0, 0, 0) 70%); animation: lightRays 15s ease infinite alternate; } @@ -382,16 +382,17 @@ body.deepsea-theme { /* Light ray animation */ @keyframes lightRays { 0% { - transform: rotate(0deg) scale(1); + transform: scale(1) skew(0deg); opacity: 0.3; } 50% { + transform: scale(1.05) skew(2deg); opacity: 0.4; } 100% { - transform: rotate(360deg) scale(1.1); + transform: scale(1.1) skew(0deg); opacity: 0.3; } }