Skip to content

Commit

Permalink
hexadecimal val
Browse files Browse the repository at this point in the history
  • Loading branch information
Clara Zhang committed Nov 6, 2024
1 parent 6834058 commit 4560a7d
Showing 1 changed file with 2 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,8 @@ export default function ConclusionGraphic() {
<button
disabled={currentCard === 0}
className={`card-button ${currentCard === 0 ? "gray" : ""}`}
style={{
backgroundColor: currentCard === 0 ? "gray" : "initial",
}}
let
color="#808080"
aria-label="Previous Solution"
onClick={previousCard}
>
Expand All @@ -31,9 +30,6 @@ export default function ConclusionGraphic() {
className={`card-button ${
currentCard === conclusion.length - 1 ? "gray" : ""
}`}
style={{
backgroundColor: currentCard === 0 ? "gray" : "initial",
}}
aria-label="Next Solution"
onClick={nextCard}
>
Expand Down

0 comments on commit 4560a7d

Please sign in to comment.