Skip to content

Commit 76a9f5f

Browse files
committed
fixed back arrow
1 parent debe855 commit 76a9f5f

File tree

1 file changed

+9
-3
lines changed
  • app/(pages)/judges/map/_components/Map

1 file changed

+9
-3
lines changed

app/(pages)/judges/map/_components/Map/Map.tsx

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,22 @@ import map from 'public/judges/hub/map.png';
77
export default function Map() {
88
return (
99
<div className={styles.container}>
10-
<div style={{ display: 'flex', alignItems: 'center' }}>
10+
<div
11+
style={{
12+
display: 'flex',
13+
alignItems: 'center',
14+
alignSelf: 'flex-start',
15+
}}
16+
>
1117
<Link href="/judges">
1218
<Image
1319
src={backArrow}
1420
alt="back arrow"
1521
width={50}
16-
style={{ marginTop: '8px', marginLeft: '-160px' }}
22+
style={{ marginTop: '8px' }}
1723
/>
1824
</Link>
19-
<h3 className={styles.header}>Table Locations</h3>
25+
<h3 className={styles.header}>Go Back</h3>
2026
</div>
2127

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

0 commit comments

Comments
 (0)