Update healthchecks and CSS animations

Modified healthcheck parameters in docker-compose.yml for
faster response times and removed redis dependency. Adjusted
CSS z-index and transform properties for improved visual
effects in the lightRays animation.
This commit is contained in:
DJObleezy 2025-04-24 16:55:05 -07:00
parent 276fe14658
commit 82791cade2
2 changed files with 6 additions and 8 deletions

View File

@ -13,7 +13,7 @@ services:
interval: 1s interval: 1s
timeout: 5s timeout: 5s
retries: 3 retries: 3
start_period: 3s start_period: 1s
dashboard: dashboard:
build: . build: .
@ -30,12 +30,9 @@ services:
- LOG_LEVEL=INFO - LOG_LEVEL=INFO
volumes: volumes:
- ./logs:/app/logs - ./logs:/app/logs
depends_on:
redis:
condition: service_healthy
healthcheck: healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:5000/api/health"] test: ["CMD", "curl", "-f", "http://localhost:5000/api/health"]
interval: 30s interval: 5s
timeout: 10s timeout: 10s
retries: 3 retries: 3

View File

@ -374,7 +374,7 @@ body.deepsea-theme {
height: 200%; height: 200%;
background: rgba(0, 0, 0, 0); background: rgba(0, 0, 0, 0);
pointer-events: none; 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%); 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; animation: lightRays 15s ease infinite alternate;
} }
@ -382,16 +382,17 @@ body.deepsea-theme {
/* Light ray animation */ /* Light ray animation */
@keyframes lightRays { @keyframes lightRays {
0% { 0% {
transform: rotate(0deg) scale(1); transform: scale(1) skew(0deg);
opacity: 0.3; opacity: 0.3;
} }
50% { 50% {
transform: scale(1.05) skew(2deg);
opacity: 0.4; opacity: 0.4;
} }
100% { 100% {
transform: rotate(360deg) scale(1.1); transform: scale(1.1) skew(0deg);
opacity: 0.3; opacity: 0.3;
} }
} }