Reduce the size of the Sapiens logo displayed on the homepage

Update the `className` attribute for the `img` tag in `client/src/pages/Home.tsx` to reduce the logo's height from `h-[4px]` to `h-1.5`.

Replit-Commit-Author: Agent
Replit-Commit-Session-Id: 930e9607-8d85-4ad9-8702-a48ff4cef074
Replit-Commit-Checkpoint-Type: full_checkpoint
Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/3df548ff-50ae-432f-9be4-25d34eccc983/930e9607-8d85-4ad9-8702-a48ff4cef074/cYvjJgC
This commit is contained in:
kimjaehyeon0101
2025-10-15 11:41:32 +00:00
parent 014902213a
commit e93b8f99a8
2 changed files with 2 additions and 2 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.7 KiB

View File

@ -117,9 +117,9 @@ export default function Home() {
<div className="pl-10 pr-16 py-1.5 bg-gray-50 border border-gray-200 rounded-md flex items-center space-x-2 hover:bg-gray-100 transition-colors">
<span className="text-sm text-gray-500">search in</span>
<img
src="/attached_assets/sapiens_black_logo.png?v=2"
src="/attached_assets/sapiens_black_logo.png?v=3"
alt="SAPIENS"
className="h-[4px] w-auto"
className="h-1.5 w-auto"
/>
</div>
</div>