Skip to content

Commit

Permalink
Merge branch 'main' into fix-issue-ssitvit#437
Browse files Browse the repository at this point in the history
  • Loading branch information
crocmons committed Jun 11, 2023
2 parents 8469112 + bcc1388 commit b33cc04
Show file tree
Hide file tree
Showing 8 changed files with 169 additions and 474 deletions.
51 changes: 0 additions & 51 deletions src/Games/Arkanoid/App.css

This file was deleted.

261 changes: 0 additions & 261 deletions src/Games/Arkanoid/App.js

This file was deleted.

7 changes: 4 additions & 3 deletions src/Games/DiceThrow/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -103,9 +103,10 @@ const Game = (props) => {
<h2> Set target: </h2>
<input value={target} onChange={inputHandler} style={{ width: "30%" }} />
<h2> Turn: Player {turn}</h2>
<h1>{score1}&nbsp;:</h1>
<h1>&nbsp;{score2}</h1>
<img src={imageSource} alt="" />
<h1>{score1}</h1>
<span>&ensp; &ensp; &ensp; &ensp;</span>
<h1>{score2}</h1>
<img src={imageSource} />
<button onClick={play} style={{ width: "200px" }}>
{res}
</button>
Expand Down
6 changes: 3 additions & 3 deletions src/Games/Typo/components/main-game/MainGame.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const MainGame = () => {
/>
<div className="main-box">
<h1 className="main-h1">
Timer <AiFillClockCircle /><span>:</span> {timeRemaning}s {"\n"}
Timer <AiFillClockCircle /> : {timeRemaning} s
</h1>
<button
className="btn-change"
Expand All @@ -34,13 +34,13 @@ const MainGame = () => {
>
Start Game
</button>
<h1 className="main-h1 main-h1-2">
<h1 className="main-h1">
Word Count <RiNumbersFill /> : {wordCount} w/m
</h1>
</div>

{isOver && (
<p className="result">Your Speed is<span>{wordCount}&nbsp;Words/Minute </span> </p>
<p className="result"> Your Speed is {wordCount} Words/Minute </p>
)}
{isOver && <Confetti></Confetti>}
</section>
Expand Down
1 change: 0 additions & 1 deletion src/Games/Typo/components/main-game/main-game.css
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,5 @@ button:disabled {
textarea {
width: 100%;
padding: 0;
/* height: 496px; */
}
}
8 changes: 3 additions & 5 deletions src/Games/Typo/typo.css
Original file line number Diff line number Diff line change
@@ -1,15 +1,13 @@
.heading {
margin-top: 1em;
margin-bottom: 20px !important;
margin-left: 50px;
margin-bottom: 0;
color: white;
text-align: center;
display: flex;
align-items: center;
gap: 10px;
font-size: 1.8rem;
justify-content: flex-start;
width: 50vw;
font-size: 1.7rem;
justify-content: center;
}

.container {
Expand Down
Loading

0 comments on commit b33cc04

Please sign in to comment.