diff --git a/src/client/GameModeSelector.ts b/src/client/GameModeSelector.ts index a65853313..eb4888c2b 100644 --- a/src/client/GameModeSelector.ts +++ b/src/client/GameModeSelector.ts @@ -128,19 +128,19 @@ export class GameModeSelector extends LitElement { ${this.renderSmallActionCard( translateText("main.create"), this.openHostLobby, - "bg-surface hover:brightness-[1.08] active:brightness-[0.95] hover:scale-105", + "bg-surface hover:brightness-[1.08] active:brightness-[0.95] hover:scale-105 hover:shadow-[var(--shadow-lobby-card-hover)]", )} ${!crazyGamesSDK.isOnCrazyGames() ? this.renderSmallActionCard( translateText("mode_selector.ranked_title"), this.openRankedMenu, - "bg-surface hover:brightness-[1.08] active:brightness-[0.95] hover:scale-105", + "bg-surface hover:brightness-[1.08] active:brightness-[0.95] hover:scale-105 hover:shadow-[var(--shadow-lobby-card-hover)]", ) : html``} ${this.renderSmallActionCard( translateText("main.join"), this.openJoinLobby, - "bg-surface hover:brightness-[1.08] active:brightness-[0.95] hover:scale-105", + "bg-surface hover:brightness-[1.08] active:brightness-[0.95] hover:scale-105 hover:shadow-[var(--shadow-lobby-card-hover)]", )} @@ -200,19 +200,19 @@ export class GameModeSelector extends LitElement { ${this.renderSmallActionCard( translateText("main.create"), this.openHostLobby, - "bg-surface hover:brightness-[1.08] active:brightness-[0.95] hover:scale-105", + "bg-surface hover:brightness-[1.08] active:brightness-[0.95] hover:scale-105 hover:shadow-[var(--shadow-lobby-card-hover)]", )} ${!crazyGamesSDK.isOnCrazyGames() ? this.renderSmallActionCard( translateText("mode_selector.ranked_title"), this.openRankedMenu, - "bg-surface hover:brightness-[1.08] active:brightness-[0.95] hover:scale-105", + "bg-surface hover:brightness-[1.08] active:brightness-[0.95] hover:scale-105 hover:shadow-[var(--shadow-lobby-card-hover)]", ) : html``} ${this.renderSmallActionCard( translateText("main.join"), this.openJoinLobby, - "bg-surface hover:brightness-[1.08] active:brightness-[0.95] hover:scale-105", + "bg-surface hover:brightness-[1.08] active:brightness-[0.95] hover:scale-105 hover:shadow-[var(--shadow-lobby-card-hover)]", )}