diff --git a/src/app/components/PaymentSummary/index.tsx b/src/app/components/PaymentSummary/index.tsx index 8aec075fa7..641816c6ea 100644 --- a/src/app/components/PaymentSummary/index.tsx +++ b/src/app/components/PaymentSummary/index.tsx @@ -20,11 +20,16 @@ const PaymentSummary: FC = ({ return (
-
{tCommon("amount")}
-
- {getFormattedSats(amount)} +
+ {tCommon("amount")} +
+
+
{getFormattedSats(amount)}
{!!fiatAmount && ( - + {" "} (~{fiatAmount}) diff --git a/src/app/components/PublisherCard/index.tsx b/src/app/components/PublisherCard/index.tsx index dda97b2ccb..f316829f50 100644 --- a/src/app/components/PublisherCard/index.tsx +++ b/src/app/components/PublisherCard/index.tsx @@ -37,7 +37,7 @@ export default function PublisherCard({ > {image && ( )}

{title} @@ -70,7 +70,10 @@ export default function PublisherCard({ href={`https://${url}`} title={url} target="_blank" - className="text-gray-500 dark:text-gray-400 overflow-hidden mb-2 text-ellipsis whitespace-nowrap leading-1" + className={classNames( + "text-gray-500 dark:text-neutral-500 overflow-hidden text-ellipsis whitespace-nowrap", + isSmall && "text-xs" + )} rel="noreferrer noopener" > {url} @@ -79,10 +82,10 @@ export default function PublisherCard({ {!url && description && (

{description}