Skip to content

Commit

Permalink
Button hover fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredsbt committed Apr 1, 2024
1 parent fc8e292 commit 10c4338
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions frontend/src/components/PathAppLayout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -97,15 +97,11 @@ export const PathAppLayout: React.FC<PathAppLayoutProps> = ({ path }: PathAppLay
<PathwayTimeline path={path} progress={pageNum}></PathwayTimeline>

<div className={styles.navigationContainer}>
<button onClick={back}>
<div className={styles.backArrow}>
<img src={backArrow} id={styles.backArrow} alt="backArrow"></img>
</div>
<button onClick={back} className={styles.backArrow}>
<img src={backArrow} id={styles.backArrow} alt="backArrow"></img>
</button>
<button onClick={next}>
<div className={styles.arrow}>
<img src={arrow} id={styles.arrow} alt="arrow"></img>
</div>
<button onClick={next} className={styles.arrow}>
<img src={arrow} id={styles.arrow} alt="arrow"></img>
</button>
</div>
</div>
Expand Down

0 comments on commit 10c4338

Please sign in to comment.