From 476e07ee2172014b04e62f9e929feda1c996c051 Mon Sep 17 00:00:00 2001 From: TheGrinder <2921922+CyberDexter@users.noreply.github.com> Date: Sat, 9 Sep 2023 20:06:07 +0200 Subject: [PATCH] make zaps prettier. fix goal selection. --- src/element/send-zap.css | 2 +- src/element/send-zap.tsx | 2 +- src/index.css | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/element/send-zap.css b/src/element/send-zap.css index aa37b82..abbf0fc 100644 --- a/src/element/send-zap.css +++ b/src/element/send-zap.css @@ -6,7 +6,7 @@ .send-zap .amounts { display: grid; - grid-template-columns: repeat(6, 1fr); + grid-template-columns: repeat(5, 1fr); justify-content: space-evenly; gap: 8px; } diff --git a/src/element/send-zap.tsx b/src/element/send-zap.tsx index 83265ed..623324c 100644 --- a/src/element/send-zap.tsx +++ b/src/element/send-zap.tsx @@ -36,7 +36,7 @@ export function SendZaps({ lnurl, pubkey, aTag, eTag, targetName, onFinish }: Se const UsdRate = 28_000; const satsAmounts = [ - 21, 69, 121, 221, 420, 1_000, 2_100, 5_000, 6_666, 10_000, 21_000, 42_000, 69_000, 100_000, 210_000, 500_000, + 21, 69, 121, 420, 1_000, 2_100, 4_200, 10_000, 21_000, 42_000, 69_000, 100_000, 210_000, 500_000, 1_000_000, ]; const usdAmounts = [0.05, 0.5, 2, 5, 10, 50, 100, 200]; diff --git a/src/index.css b/src/index.css index dcd7ab0..f1d7259 100644 --- a/src/index.css +++ b/src/index.css @@ -193,7 +193,7 @@ input[type="number"] { select { font-family: inherit; border: unset; - background-color: unset; + background-color: #262626; color: inherit; width: 100%; font-size: 16px;