diff --git a/src/client/GameModeSelector.ts b/src/client/GameModeSelector.ts index ad0dd34bd..0c98d2635 100644 --- a/src/client/GameModeSelector.ts +++ b/src/client/GameModeSelector.ts @@ -114,23 +114,27 @@ export class GameModeSelector extends LitElement { private renderQuickActionsSection() { return html` -
- ${this.renderSmallActionCard( - translateText("main.solo"), - this.openSinglePlayerModal, - )} - ${this.renderSmallActionCard( - translateText("mode_selector.ranked_title"), - this.openRankedMenu, - )} - ${this.renderSmallActionCard( - translateText("main.create"), - this.openHostLobby, - )} - ${this.renderSmallActionCard( - translateText("main.join"), - this.openJoinLobby, - )} +
+
+ ${this.renderSmallActionCard( + translateText("main.solo"), + this.openSinglePlayerModal, + )} + ${this.renderSmallActionCard( + translateText("mode_selector.ranked_title"), + this.openRankedMenu, + )} +
+
+ ${this.renderSmallActionCard( + translateText("main.create"), + this.openHostLobby, + )} + ${this.renderSmallActionCard( + translateText("main.join"), + this.openJoinLobby, + )} +
`; }