Remove shadowed box from media outlet header and top bar

Removes `bg-gray-50`, `rounded-xl`, `border`, `border-gray-200`, and `hover:bg-gray-100` classes from MediaOutlet, Community, and Report components.

Replit-Commit-Author: Agent
Replit-Commit-Session-Id: 9a264234-c5d7-4dcc-adf3-a954b149b30d
Replit-Commit-Checkpoint-Type: full_checkpoint
Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/3df548ff-50ae-432f-9be4-25d34eccc983/9a264234-c5d7-4dcc-adf3-a954b149b30d/cEkjo93
This commit is contained in:
kimjaehyeon0101
2025-10-15 04:44:36 +00:00
parent 542586127a
commit 8cd539740d
4 changed files with 6 additions and 6 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

View File

@ -136,8 +136,8 @@ export default function Community() {
</span> </span>
</div> </div>
)} )}
<div className="flex flex-col justify-between bg-gray-50 px-4 py-2 rounded-xl border border-gray-200 cursor-pointer hover:bg-gray-100 transition-all h-16"> <div className="flex flex-col justify-between h-16">
<div className="flex items-center h-10 cursor-pointer" onClick={() => setLocation(`/media/${slug}`)}> <div className="flex items-center h-10 cursor-pointer hover:opacity-80 transition-opacity" onClick={() => setLocation(`/media/${slug}`)}>
<img <img
src="/attached_assets/logo_black_1759162717640.png" src="/attached_assets/logo_black_1759162717640.png"
alt="SAPIENS" alt="SAPIENS"

View File

@ -207,8 +207,8 @@ export default function MediaOutlet() {
</span> </span>
</div> </div>
)} )}
<div className="flex flex-col justify-between bg-gray-50 px-4 py-2 rounded-xl border border-gray-200 cursor-pointer hover:bg-gray-100 transition-all h-16"> <div className="flex flex-col justify-between h-16">
<div className="flex items-center h-10 cursor-pointer" onClick={() => setLocation("/")}> <div className="flex items-center h-10 cursor-pointer hover:opacity-80 transition-opacity" onClick={() => setLocation("/")}>
<img <img
src="/attached_assets/logo_black_1759162717640.png" src="/attached_assets/logo_black_1759162717640.png"
alt="SAPIENS" alt="SAPIENS"

View File

@ -474,8 +474,8 @@ export default function Report() {
</span> </span>
</div> </div>
)} )}
<div className="flex flex-col justify-between bg-gray-50 px-4 py-2 rounded-xl border border-gray-200 cursor-pointer hover:bg-gray-100 transition-all h-16"> <div className="flex flex-col justify-between h-16">
<div className="flex items-center h-10 cursor-pointer" onClick={() => setLocation("/")}> <div className="flex items-center h-10 cursor-pointer hover:opacity-80 transition-opacity" onClick={() => setLocation("/")}>
<img <img
src="/attached_assets/logo_black_1759162717640.png" src="/attached_assets/logo_black_1759162717640.png"
alt="SAPIENS" alt="SAPIENS"