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;