Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixed not displaying chess board games on homepage #377

Merged
merged 1 commit into from
Sep 3, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion client/src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import "./App.css";
import HomePage from "./Pages/Homepage.js/Homepage"
import GameScreen2 from './Pages/GameScreen2';
import MainGame from "./Pages/GameScreen/MainGame";
import Input from './components/Chat/Input/Input';
// import Input from './components/Chat/Input/Input';

function App() {
return (
Expand Down
8 changes: 0 additions & 8 deletions client/src/components/Chat/Input/Input.css
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,6 @@
padding: 5px;
}


img{
width:0;
height: 0;

}


.input-message > form > button{
display: none;
}
2 changes: 1 addition & 1 deletion client/src/components/Chat/Input/Input.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import Line from './images/line.png';

import Bold from './images/bold.png';
import Italic from './images/italic.png';
import Link from './images/link.png';
// import Link from './images/link.png';
import List from './images/list.png';
import Atsign from './images/at-sign.png';
import Paperclip from './images/paperclip.png';
Expand Down
1 change: 1 addition & 0 deletions client/src/components/MiniBoard/MiniBoard.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ function MiniBoard({ id, playerOne, playerTwo }) {
</div>

<div className="board-image">
{/* eslint-disable-next-line */}
<a href="#"><img src={boardImg} alt=""/> </a>
</div>
<div className="asideBar bottomBar">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { Switch, Route, NavLink } from "react-router-dom";
import Games from "../Games/Games";
import Chat from "../Chat/Chat";
import "./SpectatorSideBar.css";
import { BrowserRouter } from "react-router-dom";
// import { BrowserRouter } from "react-router-dom";

const SpectatorSideBar = () => {
return (
Expand Down