Skip to content

Commit 5f8433e

Browse files
committed
Fix manifest link position
1 parent 8ee2b3e commit 5f8433e

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

frontend/src/components/moderation/AppModeration.tsx

+4-6
Original file line numberDiff line numberDiff line change
@@ -103,18 +103,16 @@ const AppModeration: FunctionComponent<Props> = ({ appId }) => {
103103
},
104104
]}
105105
/>
106-
<div>
107-
<h1 className="mt-8 text-4xl font-extrabold">
108-
{appInfoQuery.data[0].name}
109-
</h1>
106+
<div className="flex flex-col">
107+
<h1 className="text-4xl font-extrabold">{appInfoQuery.data[0].name}</h1>
110108
<Link
111109
href={`/apps/${appInfoQuery.data[0].id}`}
112-
className="text-sm opacity-75"
110+
className="text-sm no-underline hover:underline"
113111
>
114112
{appInfoQuery.data[0].id}
115113
</Link>
116114
<a
117-
className="text-sm opacity-75"
115+
className="text-sm no-underline hover:underline"
118116
href={
119117
appInfoQuery.data[0].metadata?.["flathub::manifest"] ??
120118
`https://github.com/flathub/${appInfoQuery.data[0].id}`

0 commit comments

Comments
 (0)