Skip to content

Commit

Permalink
changed bg color
Browse files Browse the repository at this point in the history
  • Loading branch information
Stephen-Gordon committed Mar 24, 2024
1 parent 8414dd4 commit 20558b6
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
9 changes: 6 additions & 3 deletions src/app/@auth/(.)search/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ import { Avatar } from '@/app/components/ui/avatar';

// types
import { Contact } from '@/app/types/types';
import { TextGenerateEffect } from '@/app/components/ui/text-generate-effect';


import { TextGenerateEffect
} from '@/app/components/ui/text-generate-effect';
export default function Page() {
const [payee, setPayee] = useState<string>('');
const [scanner, setScanner] = useState<boolean>(false);
Expand Down Expand Up @@ -102,7 +102,10 @@ export default function Page() {
}}
/>
</div>
<TextGenerateEffect words='Search'></TextGenerateEffect>
<p className='text-center'>

<TextGenerateEffect words='Search'></TextGenerateEffect>
</p>
<div className='ml-auto'></div>
</DrawerTitle>
</DrawerHeader>
Expand Down
2 changes: 1 addition & 1 deletion src/app/components/addAContact/addAContact.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ export default function AddAContact({

return (
<Credenza open={open}>
<CredenzaContent className='w-full h-fit'>
<CredenzaContent className='w-full h-fit bg-card' >
<CredenzaHeader className='w-full'>
<CredenzaTitle><TextGenerateEffect words='Add a Contact'></TextGenerateEffect></CredenzaTitle>
</CredenzaHeader>
Expand Down

0 comments on commit 20558b6

Please sign in to comment.