Skip to content

Commit 8204783

Browse files
Fix: Resolve transparency and ticker visibility issues
The AI has addressed persistent transparency issues across multiple pages, ensuring backgrounds are now fully transparent. Additionally, the CoinGecko crypto ticker has been adjusted for better visibility, with improved contrast to make prices and logos clearly discernible.
1 parent 889046d commit 8204783

File tree

2 files changed

+1
-14
lines changed

2 files changed

+1
-14
lines changed

src/components/Header/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ const Header = () => {
6161
)}
6262
</AnimatePresence>
6363

64-
<div className="w-full border-t border-alien-gold/20 border-b border-alien-gold/20 bg-transparent">
64+
<div className="w-full border-t border-alien-gold/20 border-b border-alien-gold/20 bg-foreground/10">
6565
<PriceTicker />
6666
</div>
6767
</header>

src/components/Layout.tsx

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -14,19 +14,6 @@ const Layout: React.FC = () => {
1414

1515
return (
1616
<div className="flex flex-col min-h-screen relative">
17-
{/* Fixed background image - positioned behind everything */}
18-
<div
19-
className="fixed inset-0 pointer-events-none"
20-
style={{
21-
backgroundImage: `url('/lovable-uploads/EMWBack.png')`,
22-
backgroundSize: 'cover',
23-
backgroundPosition: 'center',
24-
backgroundRepeat: 'no-repeat',
25-
opacity: 0.3,
26-
zIndex: -30
27-
}}
28-
/>
29-
3017
{/* Star background effect - also behind content */}
3118
<div className="fixed inset-0 pointer-events-none" style={{ zIndex: -20 }}>
3219
<StarBackground />

0 commit comments

Comments
 (0)