Selaa lähdekoodia

Reorder positions of color selectors

Co-authored-by: ard66 <44601689+ard66@users.noreply.github.com>
NielsOverkamp 5 vuotta sitten
vanhempi
commit
16eb548244
1 muutettua tiedostoa jossa 2 lisäystä ja 2 poistoa
  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>