Skip to content

Commit

Permalink
Merge pull request #122 from HackDavis/fix/smallSechanWords
Browse files Browse the repository at this point in the history
Fix/small sechan words
  • Loading branch information
Sauvikesh authored Apr 28, 2024
2 parents 687dd1f + ea22a73 commit 98a258f
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/(pages)/judges/projects/_components/ProjectsHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ export default function ProjectsHeader({
alignItems: 'center',
height: '100vh',
border: 'none',
background: 'black',
};

return (
Expand Down Expand Up @@ -73,7 +74,7 @@ export default function ProjectsHeader({
<Image
src={map}
alt="venue map"
width={250}
width={350}
style={{ background: 'black', padding: '20px' }}
/>
<button
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import TeamInt from '@typeDefs/teams';
import styles from './TeamBlock.module.scss';
import Link from 'next/link';
import Image from 'next/image';

const RightArrow = () => {
return (
Expand Down Expand Up @@ -40,6 +41,22 @@ export default function TeamBlock({ team }: { team: TeamInt }) {
/* retrieve these from backend */
return (
<div className={styles.teamBlock}>
<Link href="/judges">
<Image
src="/judges/hub/back-arrow.svg"
alt=""
height={50}
width={50}
quality={100}
style={{
maxWidth: '100%',
height: 'auto',
objectFit: 'contain',
position: 'absolute',
marginLeft: '-190px',
}}
/>
</Link>
<div className={styles.topText}>
<h2 className={styles.teamTable}>Table {team.number}</h2>

Expand Down

0 comments on commit 98a258f

Please sign in to comment.