Pārlūkot izejas kodu

Reorder positions of color selectors

Co-authored-by: ard66 <44601689+ard66@users.noreply.github.com>
NielsOverkamp 5 gadi atpakaļ
vecāks
revīzija
16eb548244
1 mainītis faili ar 2 papildinājumiem un 2 dzēšanām
  1. 2 2
      frontend/keezen-frontend/src/Lobby.js

+ 2 - 2
frontend/keezen-frontend/src/Lobby.js

@@ -32,11 +32,11 @@ export default function Lobby({ message, pickColor, deal, setName }) {
             <div className="container">
                 <div className="row justify-content-center my-2">
                     <Pawn color={Colors.RED} {...circle_args}/>
-                    <Pawn color={Colors.BLUE} {...circle_args}/>
+                    <Pawn color={Colors.GREEN} {...circle_args}/>
                 </div>
                 <div className="row justify-content-center my2">
+                    <Pawn color={Colors.BLUE} {...circle_args}/>
                     <Pawn color={Colors.YELLOW} {...circle_args}/>
-                    <Pawn color={Colors.GREEN} {...circle_args}/>
                 </div>
             </div>
         </div>