add background image on empty page

This commit is contained in:
Maxime Réaux 2026-02-26 21:36:58 +01:00
parent ea6ec02f3b
commit d72c9902d4
16 changed files with 123 additions and 102 deletions

View file

@ -38,7 +38,8 @@ class IconName(str, Enum):
DONE = "done"
WIN = "win"
PLAYERS = "players"
WARCHRON = "warchron"
WARCHRONICO = "warchron_icon"
WARCHRONBACK = "warchron_background"
TOKEN = "token"
TOKENS = "tokens"
VP1ST = "vp1st"
@ -98,7 +99,7 @@ class Icons:
IconName.DONE: "tick.png",
IconName.WIN: "trophy.png",
IconName.PLAYERS: "users.png",
IconName.WARCHRON: "warchron_logo_background.png",
IconName.WARCHRONICO: "warchron_icon.png",
IconName.TOKEN: "point.png",
IconName.TOKENS: "points.png",
IconName.VP1ST: "trophy.png",
@ -108,6 +109,7 @@ class Icons:
IconName.NP1ST: "medal.png",
IconName.NP2ND: "medal-silver.png",
IconName.NP3RD: "medal-bronze.png",
IconName.WARCHRONBACK: "warchron_background.png",
}
@classmethod