solved bugs and optimized css

This commit is contained in:
Kevin Veen-Birkenbach 2025-02-22 16:44:32 +01:00
parent 64f8b56e2d
commit 1a951648cb
2 changed files with 6 additions and 1 deletions

View File

@ -19,4 +19,4 @@ KC_DB_PASSWORD= {{database_password}}
# If the initial administrator already exists and the environment variables are still present at startup, an error message stating the failed creation of the initial administrator is shown in the logs. Keycloak ignores the values and starts up correctly. # If the initial administrator already exists and the environment variables are still present at startup, an error message stating the failed creation of the initial administrator is shown in the logs. Keycloak ignores the values and starts up correctly.
KC_BOOTSTRAP_ADMIN_USERNAME= {{administrator_username}} KC_BOOTSTRAP_ADMIN_USERNAME= {{administrator_username}}
KC_BOOTSTRAP_ADMIN_PASSWORD= {{administrator_password}} KC_BOOTSTRAP_ADMIN_PASSWORD= {{administrator_initial_password}}

View File

@ -1048,3 +1048,8 @@ section.kanban h1, section.kanban h2{
/* New Gradient based on original background (75 -5, 75, 75 +1, 75 +5) */ /* New Gradient based on original background (75 -5, 75, 75 +1, 75 +5) */
background: linear-gradient({{ range(0, 361) | random }}deg, var(--color-70), var(--color-75), var(--color-76), var(--color-80)); background: linear-gradient({{ range(0, 361) | random }}deg, var(--color-70), var(--color-75), var(--color-76), var(--color-80));
} }
/* Portfolio */
.card-img-top i {
filter: drop-shadow(9px 10px 9px rgba(var(--color-rgb-99), 0.9));
}