From 1f549d0a033d524a24e7b058e513cbecde0055df Mon Sep 17 00:00:00 2001 From: evanpelle Date: Thu, 30 Apr 2026 17:23:11 -0600 Subject: [PATCH] add malibu glow on hover to ranked, join, create lobby buttons --- src/client/GameModeSelector.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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)]", )}