mirror of
https://github.com/sussy-code/smov.git
synced 2025-01-01 16:37:39 +01:00
Center align description on trust backend
This commit is contained in:
parent
46f2da3c45
commit
21656e6606
1 changed files with 3 additions and 1 deletions
|
@ -42,7 +42,9 @@ export function TrustBackendPart(props: TrustBackendPartProps) {
|
||||||
cardContent = (
|
cardContent = (
|
||||||
<>
|
<>
|
||||||
<h3 className="text-white font-bold text-lg">{result.value.name}</h3>
|
<h3 className="text-white font-bold text-lg">{result.value.name}</h3>
|
||||||
{result.value.description ? <p>{result.value.description}</p> : null}
|
{result.value.description ? (
|
||||||
|
<p className="text-center">{result.value.description}</p>
|
||||||
|
) : null}
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue