+
Partie terminée
@@ -253,16 +254,22 @@ export function GameEndView({ snapshot }: { snapshot: RoomSnapshot }) {
{gameRecap && gameRecap.length > 0 && (
)}
+
- {gameTracks && gameTracks.length > 0 && (
-
+ {/* Détails (musiques + récap) côte à côte sur desktop. */}
+ {((gameTracks && gameTracks.length > 0) ||
+ (gameRecap && gameRecap.length > 0)) && (
+
+ {gameTracks && gameTracks.length > 0 && (
+
+ )}
+ {gameRecap && gameRecap.length > 0 && (
+
+ )}
+
)}
- {gameRecap && gameRecap.length > 0 && (
-
- )}
-
-
+