Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix macaroon text in dark mode #571

Merged
merged 2 commits into from
Jan 31, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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