@@ -41,14 +41,14 @@ export function TappDetail() {
41
41
< div className = "max-w-6xl mx-auto" >
42
42
< Card className = "bg-gray-800 border-gray-700" >
43
43
< 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" >
45
45
{ /* Left Column */ }
46
- < div className = "" >
46
+ < div className = "flex-1 " >
47
47
< TlinkCard url = { tokenScriptUrl } />
48
48
</ div >
49
49
50
50
{ /* 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 " >
52
52
< div className = "flex flex-col gap-6" >
53
53
< h1 className = "text-5xl font-bold bg-gradient-to-r from-white to-gray-300 bg-clip-text text-transparent leading-relaxed" >
54
54
{ displayName }
@@ -60,17 +60,20 @@ export function TappDetail() {
60
60
< Button
61
61
className = "bg-gradient-to-r from-blue-500 to-blue-600 hover:from-blue-600 hover:to-blue-700
62
62
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 "
64
64
asChild
65
65
>
66
66
< Link
67
67
href = { data . tsMetadata . meta . aboutUrl }
68
68
target = "_blank"
69
+ className = "flex items-center min-w-0"
69
70
rel = "noopener noreferrer"
70
71
>
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" />
74
77
</ Link >
75
78
</ Button >
76
79
) }
0 commit comments