fix player actions button

This commit is contained in:
SowinskiBraeden committed 2026-06-27 09:48:28 -07:00
1 parent 5d27b83ecd
commit 00e640d6dc
2 files changed
+2 -3

No files matched your search

+1 -1
View File
@@ -9,7 +9,7 @@ DATA_PATH = BASE_DIR / "data" / "entries.csv"
DEFAULT_DATABASE_URL = f"sqlite:///{BASE_DIR / 'data' / 'boker-dev.sqlite3'}" DEFAULT_DATABASE_URL = f"sqlite:///{BASE_DIR / 'data' / 'boker-dev.sqlite3'}"
ELIGIBLE_MIN_SESSIONS = 3 ELIGIBLE_MIN_SESSIONS = 3
APP_VERSION = "2.5.3" APP_VERSION = "2.5.4"
def load_local_env(env_path: Path) -> None: def load_local_env(env_path: Path) -> None:
+1 -2
View File
@@ -2239,12 +2239,11 @@ select.control { cursor: pointer; }
gap: 12px; gap: 12px;
text-decoration: none; text-decoration: none;
box-shadow: var(--shadow-sm); 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 { .player-card:hover {
border-color: color-mix(in srgb, var(--accent) 40%, transparent); 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); 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--archived { opacity: 0.5; }
.player-card__head { .player-card__head {