Skip to content

Commit

Permalink
Merge pull request #571 from secondl1ght/dark-lnd-fix
Browse files Browse the repository at this point in the history
Fix macaroon text in dark mode
  • Loading branch information
bumi committed Jan 31, 2022
2 parents d920e06 + 545c16d commit edd6a7b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/app/components/PaymentSummary.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ function PaymentSummary({ amount, amountAlt, description }: Props) {
<dt className="uppercase font-semibold text-gray-500 text-xs">
Amount
</dt>
<dd className="mb-0">{amount}</dd>
<dd className="mb-0 dark:text-white">{amount}</dd>
{amountAlt && <dd className="text-gray-500">{amountAlt}</dd>}
<dt className="mt-4 uppercase font-semibold text-gray-500 text-xs">
Description
</dt>
<dd className="mb-0">{description}</dd>
<dd className="mb-0 dark:text-white">{description}</dd>
</dl>
</div>
);
Expand Down
2 changes: 1 addition & 1 deletion src/app/screens/Onboard/ConnectLnd/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ export default function ConnectLnd() {
</div>
<div className="mt-6">
<div>
<label className="block font-medium text-gray-700">
<label className="block font-medium text-gray-700 dark:text-white">
Macaroon
</label>
<div className="mt-1">
Expand Down

0 comments on commit edd6a7b

Please sign in to comment.