Skip to content

Commit

Permalink
Spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
jennatripoli committed Oct 6, 2024
1 parent 9779e63 commit a8bd27f
Showing 1 changed file with 19 additions and 17 deletions.
36 changes: 19 additions & 17 deletions src/app/history/Robots.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,22 +18,24 @@ export const Robots = ({ content }: any) => {
{robot.events.map((event: any) => (
<div key={event.title} className="body ml-4">
<p>{event.title}</p>
{event.results.map((result: string) => (
<li
key={result}
className={`ml-2 ${
result.includes("Winner") ||
result.includes("Einstein") ||
result.includes("Dean") ||
result.includes("Chairman") ||
result.includes("Impact")
? "font-bold"
: ""
}`}
>
{result}
</li>
))}
<ul className="list-disc list-outside ml-5 md:ml-8">
{event.results.map((result: string) => (
<li
key={result}
className={
result.includes("Winner") ||
result.includes("Einstein") ||
result.includes("Dean") ||
result.includes("Chairman") ||
result.includes("Impact")
? "font-bold"
: ""
}
>
{result}
</li>
))}
</ul>
</div>
))}
</div>
Expand Down Expand Up @@ -70,7 +72,7 @@ export const Robots = ({ content }: any) => {
)}
</div>
</div>
<div className="flex flex-col flex-wrap w-1/2 gap-4">
<div className="flex flex-col flex-wrap w-5/12 gap-4">
<div className="aspect-[4/3] h-fit rounded-xl shadow-lg overflow-hidden">
{robot.image && (
<Image
Expand Down

0 comments on commit a8bd27f

Please sign in to comment.