Skip to content

Commit

Permalink
find-project: improve dialogue bubbles look
Browse files Browse the repository at this point in the history
Quick and dirty to get a first version out.
  • Loading branch information
Pixep committed Jun 20, 2024
1 parent 5fcf9d2 commit 920376b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/find-project/FindProjectForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -123,12 +123,12 @@ export default function FindProjectForm({ host }: { host: string }) {
<br />
<br />
{formState !== FormState.NotSubmitted && (
<Card style={{ marginRight: '20%' }}>
<Card style={{ marginRight: '20%' }} elevation={2}>
<CardContent>{previousPrompt}</CardContent>
</Card>
)}
<br />
<Card style={{ marginLeft: '20%' }}>
<Card style={{ marginLeft: '20%', backgroundColor: '#EEFFEE' }} elevation={2}>
{formState === FormState.Submitted && (
<CardContent>
<Skeleton />
Expand Down

0 comments on commit 920376b

Please sign in to comment.