Skip to content

Commit

Permalink
Merge pull request #128 from HackDavis/fixBackArrowMap
Browse files Browse the repository at this point in the history
fixed back arrow
  • Loading branch information
Sauvikesh authored Apr 28, 2024
2 parents debe855 + 76a9f5f commit ebab67d
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions app/(pages)/judges/map/_components/Map/Map.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,22 @@ import map from 'public/judges/hub/map.png';
export default function Map() {
return (
<div className={styles.container}>
<div style={{ display: 'flex', alignItems: 'center' }}>
<div
style={{
display: 'flex',
alignItems: 'center',
alignSelf: 'flex-start',
}}
>
<Link href="/judges">
<Image
src={backArrow}
alt="back arrow"
width={50}
style={{ marginTop: '8px', marginLeft: '-160px' }}
style={{ marginTop: '8px' }}
/>
</Link>
<h3 className={styles.header}>Table Locations</h3>
<h3 className={styles.header}>Go Back</h3>
</div>

<Image src={map} alt={'venue map'} className={styles.map} />
Expand Down

0 comments on commit ebab67d

Please sign in to comment.