@@ -41,14 +41,14 @@ export function TappDetail() {
4141 < div className = "max-w-6xl mx-auto" >
4242 < Card className = "bg-gray-800 border-gray-700" >
4343 < CardContent className = "px-0 md:p-8" >
44- < div className = "grid md:grid-cols-2 gap-12" >
44+ < div className = "flex flex-col lg:flex-row gap-12" >
4545 { /* Left Column */ }
46- < div className = "" >
46+ < div className = "flex-1 " >
4747 < TlinkCard url = { tokenScriptUrl } />
4848 </ div >
4949
5050 { /* Right Column - Content */ }
51- < div className = "flex flex-col gap-8 justify-between px-4 md:px-0" >
51+ < div className = "flex flex-col gap-8 justify-between px-4 md:px-0 flex-1 " >
5252 < div className = "flex flex-col gap-6" >
5353 < h1 className = "text-5xl font-bold bg-gradient-to-r from-white to-gray-300 bg-clip-text text-transparent leading-relaxed" >
5454 { displayName }
@@ -60,17 +60,20 @@ export function TappDetail() {
6060 < Button
6161 className = "bg-gradient-to-r from-blue-500 to-blue-600 hover:from-blue-600 hover:to-blue-700
6262 text-white font-bold flex items-center gap-2 px-8 py-6 text-lg rounded-xl
63- shadow-lg shadow-blue-500/25 transition-all duration-200 hover:scale-105"
63+ shadow-lg shadow-blue-500/25 transition-all duration-200 hover:scale-105 w-full "
6464 asChild
6565 >
6666 < Link
6767 href = { data . tsMetadata . meta . aboutUrl }
6868 target = "_blank"
69+ className = "flex items-center min-w-0"
6970 rel = "noopener noreferrer"
7071 >
71- < Globe className = "mr-2 h-6 w-6" />
72- Visit { displayName } website
73- < ExternalLink className = "ml-2 h-4 w-4" />
72+ < Globe className = "mr-2 h-6 w-6 flex-shrink-0" />
73+ < span className = "truncate" >
74+ Visit { displayName } website
75+ </ span >
76+ < ExternalLink className = "ml-2 h-4 w-4 flex-shrink-0" />
7477 </ Link >
7578 </ Button >
7679 ) }
0 commit comments