Skip to content

Commit

Permalink
52_addedInstructions
Browse files Browse the repository at this point in the history
  • Loading branch information
NotAmaia committed Feb 14, 2024
1 parent dc088f9 commit 8f90575
Show file tree
Hide file tree
Showing 3 changed files with 164 additions and 248 deletions.
4 changes: 4 additions & 0 deletions src/components/shared/Exercises/GraphInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,10 @@ function GraphInput({
};
return (
<div id="graphinput-container">
<div id="graphinput-question">
Fill in the blanks to move the cursor along the path!
</div>
<div id="graphinput-check-question"></div>
<div id="graphinput-question-box">{questionArray.map(makeLine)}</div>
<div id="graphinput-check-button-container">
<button id="graphinput-check-button" onClick={nextExercise}>
Expand Down
22 changes: 22 additions & 0 deletions src/styles/Exercises/GraphInput.scss
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,28 @@
margin-bottom: 2vh;
}

#graphinput-question {
align-items: baseline;
display: flex;
flex-direction: column;
font-family: Quattrocento Sans, sans-serif;
font-size: calc(13px + 1vw);
font-style: normal;
font-weight: bold;
margin-bottom: 2vh;
margin-left: -20px;
margin-right: auto;
padding-left: 8%;
}

.graphinput-question {
align-items: center;
display: flex;
flex-direction: column;
font-family: 'PT Sans', sans-serif;
text-align: left;
}

#graphinput-question-box {
display: flex;
flex-direction: column;
Expand Down
Loading

0 comments on commit 8f90575

Please sign in to comment.