Skip to content

Commit

Permalink
Fix view
Browse files Browse the repository at this point in the history
  • Loading branch information
amrabed committed Aug 31, 2024
1 parent b9529ab commit 21e754a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/app/positions/timeline.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const PositionView = ({ position }: { position: Position }) => (
<CardFooter className="justify-between">
<div className="flex flex-row">
<Tags tags={position.tags} />
<Divider orientation="vertical" className="h-50 mx-2" />
<Divider orientation="vertical" className="h-30 mx-2" />
<Tools tools={position.skills} />
</div>
<ul className="flex flex-row gap-2 text-zinc-400">
Expand Down
2 changes: 1 addition & 1 deletion src/components/skills.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export const Tools = ({ tools }: { tools: string[] }) => (
);

export const Tags = ({ tags }: { tags: string[] }) => (
<ul className="flex flex-row gap-2 p-1 text-md">
<ul className="flex flex-row gap-2 text-md">
{tags.map((tag: string) => (
<Tooltip key={tag} content={tag} color="foreground">
<li className="size-6 text-zinc">{areas[tag.toLowerCase()]?.icon}</li>
Expand Down

0 comments on commit 21e754a

Please sign in to comment.