Skip to content

Commit

Permalink
Final push
Browse files Browse the repository at this point in the history
  • Loading branch information
yung-coder committed Aug 18, 2022
1 parent 83ef6e3 commit 99d8f53
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/plays/code-editor/CodeEditor.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ function CodeEditor(props) {
<div className="play-details-body ">
{/* Your Code Starts Here */}
<div className="code-editor-modal-toogle">
<button onClick={toggle}>How to play ?</button>
<button onClick={toggle}>How to Use ?</button>
</div>
<div className="code-editor-tab-button-container">
<Button
Expand Down
2 changes: 1 addition & 1 deletion src/plays/code-editor/Modal.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ const Modal = ({ showModal, toggle }) => {
<div className='code-editor-modal'>
<img src={close} alt="clonse" onClick={toggle} className="close-icon" />
<div className='content'>
<h1 className='text'>How to Play!</h1>
<h1 className='text'>How to Use!</h1>
<p>{structuringData[currState].info}</p>
<div className='button-section'>
{currState > 0 ? <button onClick={buttonHandler(-1)}>Prev</button> : <p></p>}
Expand Down
3 changes: 3 additions & 0 deletions src/plays/code-editor/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,9 @@
align-items: center;
font-size: xx-large;
}
.code-editor-modal-toogle button{
color: #1f6ed4;
}
@media (max-width: 764px){
.code-editor-tab-button-container{
flex-direction: column;
Expand Down

0 comments on commit 99d8f53

Please sign in to comment.