Skip to content

Commit

Permalink
Changed colors of the game components to match lobby color scheme
Browse files Browse the repository at this point in the history
  • Loading branch information
hero346 committed Apr 18, 2024
1 parent 86bb960 commit 4b73e26
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 9 deletions.
7 changes: 4 additions & 3 deletions src/Game/ChatBox.module.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
.chatBox {
width: 700px;
height: 500px;
border: 5px solid black;
border: 5px solid #1eb980;
color: white;
margin-left: 55%;
margin-top: -520px;
border-radius: 5px;
Expand All @@ -10,9 +11,9 @@
}

.chatHeader {
background-color: #f0f0f0;
background-color: #106e4b;
padding: 10px;
border-bottom: 1px solid #ccc;
border-bottom: 1px #106e4b;
}

.chatHeader h2 {
Expand Down
6 changes: 3 additions & 3 deletions src/Game/Grid.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@
}

.coordNums {
color: blue;
color: #1eb980;
border: none;
}

.coordLetters {
color: blue;
color: #1eb980;
border: none;
justify-content: space-between;

Expand All @@ -37,7 +37,7 @@


th, td {
border: 1px solid black;
border: 1px solid #1eb980;
padding: 10px;
height: 50px;
width: 500px;
Expand Down
7 changes: 4 additions & 3 deletions src/Game/UsersConnectedBox.module.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
.usersBox {
width: 300px;
height: 180px;
border: 5px solid black;
border: 5px solid #1eb980;
color: white;
margin-left: 55%;
margin-top: -710px;
border-radius: 5px;
Expand All @@ -10,9 +11,9 @@
}

.usersHeader {
background-color: #f0f0f0;
background-color: #106e4b;
padding: 10px;
border-bottom: 1px solid #ccc;
border-bottom: 1px solid #106e4b;
}

.usersHeader h2 {
Expand Down

0 comments on commit 4b73e26

Please sign in to comment.