icon alignment fix

This commit is contained in:
CPTN Cosmo 2026-03-24 02:45:43 +01:00
parent 3e6a6183c2
commit b01167c6d8
2 changed files with 9 additions and 2 deletions

View file

@ -4,8 +4,8 @@
"description": "Adds a button to the token hover HUD to toggle the spotlight for Daggerheart.",
"url": "https://git.geeks.gay/cosmo/dh-token-spotlight",
"manifest": "https://git.geeks.gay/cosmo/dh-token-spotlight/raw/branch/main/module.json",
"download": "https://git.geeks.gay/cosmo/dh-token-spotlight/releases/download/1.0.1/dh-token-spotlight.zip",
"version": "1.0.1",
"download": "https://git.geeks.gay/cosmo/dh-token-spotlight/releases/download/1.0.2/dh-token-spotlight.zip",
"version": "1.0.2",
"compatibility": {
"minimum": "13",
"verified": "13"

View file

@ -8,3 +8,10 @@
#token-hud .control-icon.active i.dh-spotlight-glow {
color: #ffd700;
}
/* Vertically center the generic FontAwesome icon */
#token-hud .control-icon[data-action="toggle-spotlight"] {
display: flex;
justify-content: center;
align-items: center;
}