Skip to content

Commit

Permalink
Minor styling
Browse files Browse the repository at this point in the history
  • Loading branch information
kretep committed Jun 15, 2023
1 parent f6584f5 commit 1e9bf59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/explore/GenerationResults.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ const GenerationResults: React.FC<any> = observer((props) => {
<div className="flex justify-center gap-8">
{ workflowSolutions.filter((solution: WorkflowSolution) => solution.isSelected)
.map((solution: WorkflowSolution, index: number) => (
<div key={index} className="border-8 border-red-200 rounded-lg overflow-hidden p-2">
<div key={index} className="border-2 border-red-200 rounded-xl overflow-hidden p-2 shadow-lg">
<div className="m-4 text-xl"><span>Solution: { solution.name }</span></div>
{ (solution.image != null) && <img src={solution.image} alt={solution.name} /> }
</div>
Expand Down

0 comments on commit 1e9bf59

Please sign in to comment.