-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #370 from dread557/dev
FORFEIT BUTTON FOR POPUP NOTIFICATION
- Loading branch information
Showing
22 changed files
with
11,559 additions
and
1,046 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import './Forfeitbtn.css'; | ||
import ForfeitBtn from './components/ForfeitBtn/ForfeitBtn' | ||
|
||
|
||
const Forfeitbtn = () => { | ||
return ( | ||
<div className="forfeitbtnmain"> | ||
<ForfeitBtn /> | ||
</div> | ||
); | ||
} | ||
|
||
export default Forfeitbtn; |
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
|
||
.forfeitBtn button{ | ||
width: 339px; | ||
height: 69px; | ||
background-color: rgb(114, 2, 2); | ||
color: white; | ||
border-radius: 1rem; | ||
border: none; | ||
outline: none; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import './ForfeitBtn.css'; | ||
|
||
function Forfeit () { | ||
|
||
return ( | ||
<div className = "forfeitBtn"> | ||
<Link to path = ""><button>Forfeit Game</button></Link> | ||
</div> | ||
) | ||
} | ||
|
||
export default Forfeit; |
This file was deleted.
Oops, something went wrong.
16 changes: 0 additions & 16 deletions
16
client/src/components/Modals/InviteModal/InviteModalSearch.js
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.