From 00e640d6dc75c728f7b285afbce6d48d3a7e1abe Mon Sep 17 00:00:00 2001 From: SowinskiBraeden Date: Sat, 27 Jun 2026 09:48:28 -0700 Subject: [PATCH] fix player actions button --- config.py | 2 +- static/css/style.css | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/config.py b/config.py index 054ebbd..fb8dc16 100644 --- a/config.py +++ b/config.py @@ -9,7 +9,7 @@ DATA_PATH = BASE_DIR / "data" / "entries.csv" DEFAULT_DATABASE_URL = f"sqlite:///{BASE_DIR / 'data' / 'boker-dev.sqlite3'}" ELIGIBLE_MIN_SESSIONS = 3 -APP_VERSION = "2.5.3" +APP_VERSION = "2.5.4" def load_local_env(env_path: Path) -> None: diff --git a/static/css/style.css b/static/css/style.css index ca76ef1..ba2fc2c 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -2239,12 +2239,11 @@ select.control { cursor: pointer; } gap: 12px; text-decoration: none; box-shadow: var(--shadow-sm); - transition: border-color 0.18s, box-shadow 0.18s, transform 0.18s; + transition: border-color 0.18s, box-shadow 0.18s; } .player-card:hover { border-color: color-mix(in srgb, var(--accent) 40%, transparent); box-shadow: var(--shadow-lg), 0 0 0 1px color-mix(in srgb, var(--accent) 18%, transparent); - transform: translateY(-2px); } .player-card--archived { opacity: 0.5; } .player-card__head {