2220 lines
48 KiB
CSS
2220 lines
48 KiB
CSS
* { margin: 0; padding: 0; box-sizing: border-box; }
|
|
|
|
:root {
|
|
--bg: #0c1222;
|
|
--bg-card: #151d2e;
|
|
--bg-card-hover: #1a2438;
|
|
--text: #f1f5f9;
|
|
--text-muted: #94a3b8;
|
|
--text-soft: #64748b;
|
|
--accent: #f97316;
|
|
--accent-hover: #ea580c;
|
|
--accent-soft: #22c55e;
|
|
--accent-soft-hover: #16a34a;
|
|
--border: #334155;
|
|
--error: #f87171;
|
|
--error-bg: rgba(248, 113, 113, 0.1);
|
|
--success: #4ade80;
|
|
--shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
|
|
--radius: 16px;
|
|
--radius-card: 12px;
|
|
/* 8px spacing scale */
|
|
--space-xs: 8px;
|
|
--space-sm: 16px;
|
|
--space-md: 24px;
|
|
--space-lg: 32px;
|
|
--space-xl: 48px;
|
|
--space-xxl: 64px;
|
|
}
|
|
|
|
body {
|
|
font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
|
|
background: var(--bg);
|
|
color: var(--text);
|
|
line-height: 1.6;
|
|
overflow-x: hidden;
|
|
-webkit-tap-highlight-color: transparent;
|
|
}
|
|
|
|
.app {
|
|
min-height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
.app-body {
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
/* Site header */
|
|
.site-header {
|
|
background: var(--bg-card);
|
|
border-bottom: 1px solid var(--border);
|
|
padding: 0 24px;
|
|
}
|
|
.site-header-inner {
|
|
max-width: 1400px;
|
|
margin: 0 auto;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
height: 56px;
|
|
padding: 0 40px;
|
|
}
|
|
@media (min-width: 1280px) {
|
|
.site-header { padding: 24px 40px; }
|
|
.site-header-inner { padding: 0; max-width: 1400px; }
|
|
}
|
|
.site-logo {
|
|
text-decoration: none;
|
|
color: var(--text);
|
|
font-weight: 600;
|
|
font-size: 1.25rem;
|
|
letter-spacing: -0.02em;
|
|
}
|
|
.site-logo:hover {
|
|
color: var(--accent);
|
|
}
|
|
.site-logo-text {
|
|
color: inherit;
|
|
}
|
|
.site-nav {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
}
|
|
.site-nav-link {
|
|
padding: 8px 16px;
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
color: var(--text-muted);
|
|
text-decoration: none;
|
|
border-radius: 8px;
|
|
transition: color 0.2s, background 0.2s;
|
|
}
|
|
.site-nav-link:hover {
|
|
color: var(--text);
|
|
background: var(--bg-card-hover);
|
|
}
|
|
.site-nav-link.active {
|
|
color: var(--accent);
|
|
background: rgba(249, 115, 22, 0.1);
|
|
}
|
|
|
|
.topbar {
|
|
background: linear-gradient(90deg, var(--accent) 0%, #fb923c 100%);
|
|
height: 4px;
|
|
width: 100%;
|
|
}
|
|
|
|
.container {
|
|
max-width: 1100px;
|
|
margin: 0 auto;
|
|
padding: 48px 32px;
|
|
display: flex;
|
|
gap: 48px;
|
|
min-height: 0;
|
|
}
|
|
|
|
/* Desktop: 3-column grid, breathing room */
|
|
@media (min-width: 1280px) {
|
|
.container {
|
|
max-width: 1400px;
|
|
padding: 60px 40px;
|
|
display: grid;
|
|
grid-template-columns: 320px 1fr 360px;
|
|
column-gap: 64px;
|
|
gap: var(--space-xxl);
|
|
}
|
|
}
|
|
|
|
.sidebar {
|
|
flex-shrink: 0;
|
|
padding-top: 8px;
|
|
}
|
|
|
|
.sidebar-left {
|
|
width: 260px;
|
|
}
|
|
|
|
.sidebar-right {
|
|
width: 320px;
|
|
}
|
|
|
|
@media (min-width: 1280px) {
|
|
.sidebar-left,
|
|
.sidebar-right {
|
|
width: 100%;
|
|
min-width: 0;
|
|
}
|
|
}
|
|
|
|
.sidebar p {
|
|
font-size: 14px;
|
|
margin-bottom: 8px;
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
.sidebar .label {
|
|
font-size: 11px;
|
|
font-weight: 600;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.06em;
|
|
color: var(--text-soft);
|
|
margin-top: 28px;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.sidebar a {
|
|
display: block;
|
|
color: var(--accent-soft);
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
text-decoration: none;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.sidebar a:hover { color: var(--accent-soft-hover); text-decoration: underline; }
|
|
|
|
.sidebar-links {
|
|
margin-top: var(--space-lg);
|
|
}
|
|
.sidebar-links .label {
|
|
margin-top: var(--space-md);
|
|
}
|
|
|
|
.sidebar-left .deposit-box {
|
|
margin-top: 0;
|
|
width: 100%;
|
|
border-top: none;
|
|
padding-top: 0;
|
|
}
|
|
.sidebar-left .deposit-box .copy-row { flex-wrap: wrap; }
|
|
.sidebar-left .deposit-box input { max-width: 100%; min-width: 0; }
|
|
.sidebar-left .deposit-box .qr-wrap img { max-width: 100%; height: auto; }
|
|
|
|
/* Left column: funding panel card (desktop) */
|
|
@media (min-width: 1280px) {
|
|
.funding-panel {
|
|
background: var(--bg-card);
|
|
border: 1px solid var(--border);
|
|
border-radius: 16px;
|
|
padding: var(--space-lg);
|
|
box-shadow: var(--shadow);
|
|
}
|
|
.funding-panel .deposit-box {
|
|
margin-top: 0;
|
|
padding-top: 0;
|
|
border-top: none;
|
|
}
|
|
.funding-panel .deposit-box h3 { margin-bottom: var(--space-md); }
|
|
.funding-panel .deposit-box .copy-row { margin-bottom: var(--space-md); }
|
|
.funding-panel .deposit-box .qr-wrap {
|
|
margin-top: var(--space-md);
|
|
margin-bottom: 0;
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
.funding-panel .deposit-box .qr-wrap img {
|
|
max-width: 220px;
|
|
width: 100%;
|
|
height: auto;
|
|
}
|
|
.funding-panel .cashu-redeem {
|
|
margin-top: 40px;
|
|
padding-top: 40px;
|
|
border-top: 1px solid var(--border);
|
|
}
|
|
}
|
|
|
|
.sidebar-right .stats-box {
|
|
width: 100%;
|
|
margin-top: 0;
|
|
}
|
|
|
|
.main { flex: 1; min-width: 0; }
|
|
@media (min-width: 1280px) {
|
|
.main { min-width: 0; }
|
|
}
|
|
.main--full { max-width: 800px; margin: 0 auto; }
|
|
.container--single { justify-content: center; }
|
|
|
|
/* Site footer */
|
|
.site-footer {
|
|
margin-top: auto;
|
|
background: var(--bg-card);
|
|
border-top: 1px solid var(--border);
|
|
padding: 24px 24px 32px;
|
|
}
|
|
.site-footer-inner {
|
|
max-width: 1100px;
|
|
margin: 0 auto;
|
|
text-align: center;
|
|
}
|
|
.site-footer-nav {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 24px;
|
|
margin-bottom: 16px;
|
|
}
|
|
.site-footer-nav a {
|
|
font-size: 14px;
|
|
color: var(--text-muted);
|
|
text-decoration: none;
|
|
}
|
|
.site-footer-nav a:hover {
|
|
color: var(--accent);
|
|
}
|
|
.site-footer-copy {
|
|
font-size: 13px;
|
|
color: var(--text-soft);
|
|
margin: 0;
|
|
}
|
|
|
|
/* Transactions page */
|
|
.transactions-page {
|
|
padding: 0 0 32px;
|
|
}
|
|
.transactions-title {
|
|
font-size: 1.75rem;
|
|
font-weight: 600;
|
|
color: var(--text);
|
|
margin-bottom: 8px;
|
|
}
|
|
.transactions-intro {
|
|
font-size: 15px;
|
|
color: var(--text-muted);
|
|
margin-bottom: 28px;
|
|
}
|
|
.transactions-box {
|
|
background: var(--bg-card);
|
|
border: 1px solid var(--border);
|
|
border-radius: var(--radius-card);
|
|
padding: 24px;
|
|
box-shadow: var(--shadow);
|
|
overflow-x: auto;
|
|
}
|
|
.transactions-table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
font-size: 14px;
|
|
}
|
|
.transactions-table th,
|
|
.transactions-table td {
|
|
padding: 12px 16px;
|
|
text-align: left;
|
|
border-bottom: 1px solid var(--border);
|
|
}
|
|
.transactions-table th {
|
|
font-size: 11px;
|
|
font-weight: 600;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.06em;
|
|
color: var(--text-soft);
|
|
}
|
|
.transactions-table tbody tr:last-child td {
|
|
border-bottom: none;
|
|
}
|
|
.transactions-table tbody tr:hover td {
|
|
background: var(--bg-card-hover);
|
|
}
|
|
.transactions-amount {
|
|
font-variant-numeric: tabular-nums;
|
|
color: var(--accent-soft);
|
|
font-weight: 500;
|
|
}
|
|
.transactions-pubkey,
|
|
.transactions-details {
|
|
font-family: ui-monospace, monospace;
|
|
font-size: 13px;
|
|
color: var(--text-muted);
|
|
word-break: break-all;
|
|
}
|
|
.transactions-direction,
|
|
.transactions-type {
|
|
display: inline-block;
|
|
padding: 4px 10px;
|
|
border-radius: 6px;
|
|
font-size: 12px;
|
|
font-weight: 600;
|
|
text-transform: capitalize;
|
|
}
|
|
.transactions-direction--in {
|
|
background: rgba(34, 197, 94, 0.15);
|
|
color: var(--accent-soft);
|
|
}
|
|
.transactions-direction--out {
|
|
background: rgba(249, 115, 22, 0.15);
|
|
color: var(--accent);
|
|
}
|
|
.transactions-type--lightning {
|
|
background: rgba(251, 191, 36, 0.15);
|
|
color: #fbbf24;
|
|
}
|
|
.transactions-type--cashu {
|
|
background: rgba(168, 85, 247, 0.15);
|
|
color: #a855f7;
|
|
}
|
|
.transactions-loading {
|
|
max-width: 400px;
|
|
}
|
|
.transactions-error {
|
|
padding: 20px;
|
|
background: var(--error-bg);
|
|
border: 1px solid rgba(248, 113, 113, 0.3);
|
|
border-radius: var(--radius-card);
|
|
color: var(--error);
|
|
}
|
|
.transactions-empty {
|
|
color: var(--text-muted);
|
|
font-size: 15px;
|
|
margin: 0;
|
|
}
|
|
|
|
.header {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-bottom: var(--space-xl);
|
|
padding-bottom: var(--space-lg);
|
|
border-bottom: 1px solid var(--border);
|
|
}
|
|
|
|
.faucet-svg {
|
|
width: 80px;
|
|
height: 112px;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 2.5rem;
|
|
font-weight: 600;
|
|
color: var(--text);
|
|
letter-spacing: -0.03em;
|
|
margin-left: 24px;
|
|
}
|
|
|
|
.content h2 {
|
|
font-size: 1.375rem;
|
|
font-weight: 600;
|
|
margin-bottom: 12px;
|
|
color: var(--text);
|
|
}
|
|
|
|
.content p {
|
|
font-size: 16px;
|
|
margin-bottom: 28px;
|
|
color: var(--text-muted);
|
|
max-width: 540px;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
.entropy-box {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 24px;
|
|
background: var(--bg-card);
|
|
border: 1px solid var(--border);
|
|
border-radius: var(--radius-card);
|
|
padding: 24px 28px;
|
|
margin-bottom: 28px;
|
|
box-shadow: var(--shadow);
|
|
transition: transform 0.2s ease, box-shadow 0.2s ease;
|
|
}
|
|
|
|
.entropy-box:hover {
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
|
|
}
|
|
|
|
.entropy-label {
|
|
font-size: 11px;
|
|
font-weight: 600;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.06em;
|
|
color: var(--text-soft);
|
|
}
|
|
|
|
.entropy-display-row {
|
|
display: flex;
|
|
align-items: baseline;
|
|
gap: 8px;
|
|
}
|
|
.entropy-display {
|
|
font-size: 2rem;
|
|
font-weight: 700;
|
|
color: var(--accent);
|
|
min-width: 56px;
|
|
text-align: center;
|
|
font-variant-numeric: tabular-nums;
|
|
transition: color 0.2s;
|
|
}
|
|
|
|
.entropy-display.rolling { color: var(--text-muted); }
|
|
|
|
.entropy-unit { font-size: 14px; color: var(--text-muted); }
|
|
|
|
.entropy-bar { display: flex; gap: 8px; align-items: center; }
|
|
|
|
.entropy-pip {
|
|
width: 12px;
|
|
height: 12px;
|
|
border-radius: 50%;
|
|
background: var(--border);
|
|
transition: background 0.2s;
|
|
}
|
|
|
|
.entropy-pip.active { background: var(--accent); }
|
|
.entropy-pip.selected-tier {
|
|
box-shadow: 0 0 0 2px var(--bg-card), 0 0 0 4px var(--accent);
|
|
transform: scale(1.15);
|
|
}
|
|
|
|
.entropy-btn {
|
|
font-size: 13px;
|
|
background: var(--bg-card);
|
|
border: 1px solid var(--border);
|
|
border-radius: 8px;
|
|
padding: 8px 16px;
|
|
cursor: pointer;
|
|
color: var(--text-muted);
|
|
font-weight: 500;
|
|
}
|
|
|
|
.entropy-btn:hover { background: var(--bg-card-hover); color: var(--text); }
|
|
|
|
.entropy-source { font-size: 13px; color: var(--text-soft); }
|
|
.connect-display { font-size: 14px; color: var(--text-muted); }
|
|
.profile-hint {
|
|
margin-top: 10px;
|
|
font-size: 13px;
|
|
color: var(--accent-soft);
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
padding: 6px 12px;
|
|
background: rgba(34, 197, 94, 0.08);
|
|
border: 1px solid rgba(34, 197, 94, 0.2);
|
|
border-radius: 8px;
|
|
}
|
|
.profile-hint::before {
|
|
content: "✓";
|
|
font-weight: 700;
|
|
color: var(--accent-soft);
|
|
}
|
|
|
|
.address-row {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 16px;
|
|
margin-top: 16px;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.address-row label { font-size: 15px; color: var(--text-muted); font-weight: 500; min-width: 160px; }
|
|
|
|
.address-row input[type="text"] {
|
|
width: 280px;
|
|
max-width: 100%;
|
|
height: 48px;
|
|
border: 1px solid var(--border);
|
|
border-radius: 10px;
|
|
padding: 0 16px;
|
|
font-size: 15px;
|
|
background: var(--bg-card);
|
|
color: var(--text);
|
|
transition: border-color 0.2s, box-shadow 0.2s;
|
|
}
|
|
|
|
.address-row input[type="text"]::placeholder {
|
|
color: var(--text-soft);
|
|
}
|
|
|
|
.address-row input[type="text"]:focus {
|
|
outline: none;
|
|
border-color: var(--accent);
|
|
box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.2);
|
|
}
|
|
|
|
.address-row button {
|
|
height: 48px;
|
|
padding: 0 28px;
|
|
font-size: 15px;
|
|
font-weight: 500;
|
|
background: linear-gradient(135deg, var(--accent) 0%, #fb923c 100%);
|
|
color: #fff;
|
|
border: none;
|
|
cursor: pointer;
|
|
border-radius: 10px;
|
|
transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
|
|
}
|
|
|
|
.address-row button:hover:not(:disabled) {
|
|
opacity: 0.95;
|
|
transform: translateY(-1px);
|
|
box-shadow: 0 4px 16px rgba(249, 115, 22, 0.35);
|
|
}
|
|
.address-row button:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
|
|
.address-row button.btn-secondary {
|
|
background: var(--bg-card);
|
|
color: var(--text-muted);
|
|
border: 1px solid var(--border);
|
|
}
|
|
.address-row button.btn-secondary:hover:not(:disabled) {
|
|
background: var(--bg-card-hover);
|
|
color: var(--text);
|
|
box-shadow: none;
|
|
}
|
|
|
|
.stats-box {
|
|
background: var(--bg-card);
|
|
border: 1px solid var(--border);
|
|
border-radius: var(--radius-card);
|
|
padding: 24px 28px;
|
|
margin-bottom: 20px;
|
|
box-shadow: var(--shadow);
|
|
transition: transform 0.2s ease, box-shadow 0.2s ease;
|
|
}
|
|
|
|
.stats-box:hover {
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
|
|
}
|
|
|
|
@media (min-width: 1280px) {
|
|
.stats-box {
|
|
padding: var(--space-lg);
|
|
}
|
|
.stats-box h3 { margin-bottom: 0; }
|
|
.stats-box .stats-balance { margin-bottom: 4px; }
|
|
.stats-box .stats-balance-label { margin-bottom: var(--space-sm); }
|
|
.stats-box .stats-progress-wrap {
|
|
margin-top: 0;
|
|
margin-bottom: var(--space-md);
|
|
}
|
|
.stats-box .stats-progress-label { margin-bottom: var(--space-xs); }
|
|
.stats-box .stats-rows { margin-top: 0; margin-bottom: var(--space-lg); }
|
|
.stats-box .stats-recent-title { margin-top: 0; margin-bottom: var(--space-sm); }
|
|
.stats-box .stats-recent-list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
row-gap: 12px;
|
|
}
|
|
.stats-box .stats-recent-list li { padding: 0; border-bottom: none; }
|
|
.stats-box .stats-refresh { margin-top: 0; }
|
|
}
|
|
|
|
.stats-box h3 { font-size: 12px; font-weight: 600; color: var(--text-soft); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.06em; }
|
|
.stats-box p { font-size: 15px; margin-bottom: 8px; color: var(--text); }
|
|
.stats-box .stats-balance { font-size: 1.75rem; font-weight: 700; color: var(--accent-soft); font-variant-numeric: tabular-nums; margin-bottom: 4px; }
|
|
.stats-box .stats-balance-label { font-size: 13px; color: var(--text-soft); margin-bottom: 20px; }
|
|
.stats-box .stats-rows { margin-top: 8px; }
|
|
.stats-box .stats-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
|
|
.stats-box .stats-row:last-of-type { border-bottom: none; }
|
|
.stats-box .stats-row span:first-child { color: var(--text-muted); }
|
|
.stats-box .stats-row span:last-child { color: var(--text); font-variant-numeric: tabular-nums; }
|
|
.stats-box .stats-progress-wrap { margin-top: 4px; margin-bottom: 24px; }
|
|
.stats-box .stats-progress-label { font-size: 13px; color: var(--text-muted); margin-bottom: 8px; }
|
|
.stats-box .stats-progress-bar { height: 8px; background: var(--border); border-radius: 4px; overflow: hidden; }
|
|
.stats-box .stats-progress-fill { height: 100%; background: linear-gradient(90deg, var(--accent-soft), #4ade80); border-radius: 4px; transition: width 0.3s ease; }
|
|
.stats-box .stats-recent-title { margin-top: 20px; margin-bottom: 10px; }
|
|
.stats-box .stats-recent-list { font-size: 13px; color: var(--text-muted); list-style: none; padding: 0; }
|
|
.stats-box .stats-recent-list li { padding: 4px 0; border-bottom: 1px solid var(--border); }
|
|
.stats-box .stats-recent-list li:last-child { border-bottom: none; }
|
|
.stats-box .stats-refresh { margin-top: 16px; width: 100%; }
|
|
.stats-box-loading p { color: var(--text-muted); }
|
|
|
|
/* Toast */
|
|
.toast {
|
|
position: fixed;
|
|
bottom: 24px;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
padding: 12px 24px;
|
|
background: var(--bg-card);
|
|
border: 1px solid var(--border);
|
|
border-radius: 10px;
|
|
box-shadow: var(--shadow);
|
|
color: var(--text);
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
z-index: 1100;
|
|
animation: toast-in 0.25s ease-out;
|
|
}
|
|
@keyframes toast-in {
|
|
from { opacity: 0; transform: translateX(-50%) translateY(8px); }
|
|
to { opacity: 1; transform: translateX(-50%) translateY(0); }
|
|
}
|
|
|
|
/* Stats skeleton */
|
|
.stats-skeleton {
|
|
padding: 24px 28px;
|
|
}
|
|
.stats-skeleton .skeleton-line {
|
|
height: 16px;
|
|
background: linear-gradient(90deg, var(--border) 25%, var(--bg-card-hover) 50%, var(--border) 75%);
|
|
background-size: 200% 100%;
|
|
animation: skeleton-shine 1.2s ease-in-out infinite;
|
|
border-radius: 4px;
|
|
margin-bottom: 12px;
|
|
}
|
|
.stats-skeleton .skeleton-line.balance {
|
|
height: 32px;
|
|
width: 60%;
|
|
margin-bottom: 20px;
|
|
}
|
|
.stats-skeleton .skeleton-line.short {
|
|
width: 70%;
|
|
}
|
|
@keyframes skeleton-shine {
|
|
0% { background-position: 200% 0; }
|
|
100% { background-position: -200% 0; }
|
|
}
|
|
|
|
.deposit-box {
|
|
margin-top: 28px;
|
|
padding-top: 24px;
|
|
border-top: 1px solid var(--border);
|
|
}
|
|
.deposit-box h3 { font-size: 1rem; font-weight: 600; margin-bottom: 12px; color: var(--text); }
|
|
.deposit-box .copy-row { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
|
|
.deposit-box input { flex: 1; max-width: 300px; height: 44px; padding: 0 14px; font-size: 14px; border: 1px solid var(--border); border-radius: 8px; background: var(--bg-card); color: var(--text); }
|
|
.deposit-box button { height: 44px; padding: 0 18px; font-size: 14px; font-weight: 500; background: var(--bg-card-hover); color: var(--text-muted); border: 1px solid var(--border); cursor: pointer; border-radius: 8px; }
|
|
.deposit-box button:hover { background: var(--border); color: var(--text); }
|
|
.qr-wrap { margin-top: 16px; }
|
|
.qr-wrap img { display: block; border-radius: 10px; }
|
|
|
|
.cashu-redeem { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--border); }
|
|
.cashu-redeem-label { display: block; font-size: 13px; font-weight: 500; color: var(--text-muted); margin-bottom: 8px; }
|
|
.cashu-redeem-input { width: 100%; min-height: 64px; padding: 10px 12px; font-size: 13px; font-family: inherit; border: 1px solid var(--border); border-radius: 8px; background: var(--bg-card); color: var(--text); resize: vertical; box-sizing: border-box; }
|
|
.cashu-redeem-input::placeholder { color: var(--text-soft); }
|
|
.cashu-redeem-input:focus { outline: none; border-color: var(--accent); }
|
|
.cashu-redeem-input:disabled { opacity: 0.7; cursor: not-allowed; }
|
|
.cashu-redeem-btn { margin-top: 10px; height: 44px; padding: 0 20px; font-size: 14px; font-weight: 500; background: linear-gradient(135deg, var(--accent) 0%, #fb923c 100%); color: #fff; border: none; border-radius: 8px; cursor: pointer; }
|
|
.cashu-redeem-btn:hover:not(:disabled) { opacity: 0.95; }
|
|
.cashu-redeem-btn:disabled { opacity: 0.5; cursor: not-allowed; }
|
|
|
|
.error-msg { color: var(--error); font-size: 14px; margin-top: 12px; }
|
|
.success-msg { color: var(--success); font-size: 14px; margin-top: 12px; }
|
|
|
|
/* Reusable modal */
|
|
.modal-overlay {
|
|
position: fixed;
|
|
inset: 0;
|
|
background: rgba(0, 0, 0, 0.6);
|
|
backdrop-filter: blur(8px);
|
|
-webkit-backdrop-filter: blur(8px);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
z-index: 1000;
|
|
padding: 24px;
|
|
animation: modal-overlay-in 0.2s ease-out;
|
|
}
|
|
.modal {
|
|
background: var(--bg-card);
|
|
border: 1px solid var(--border);
|
|
border-radius: var(--radius);
|
|
box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
|
|
max-width: 440px;
|
|
width: 100%;
|
|
max-height: 90vh;
|
|
overflow: auto;
|
|
animation: modal-scale-in 0.25s ease-out;
|
|
}
|
|
.modal-header {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 20px 24px;
|
|
border-bottom: 1px solid var(--border);
|
|
}
|
|
.modal-title {
|
|
font-size: 1.25rem;
|
|
font-weight: 600;
|
|
color: var(--text);
|
|
margin: 0;
|
|
}
|
|
.modal-close {
|
|
width: 36px;
|
|
height: 36px;
|
|
border: none;
|
|
background: var(--bg-card-hover);
|
|
color: var(--text-muted);
|
|
font-size: 1.25rem;
|
|
line-height: 1;
|
|
cursor: pointer;
|
|
border-radius: 8px;
|
|
padding: 0;
|
|
}
|
|
.modal-close:hover {
|
|
background: var(--border);
|
|
color: var(--text);
|
|
}
|
|
.modal-body {
|
|
padding: 0;
|
|
}
|
|
@keyframes modal-overlay-in {
|
|
from { opacity: 0; }
|
|
to { opacity: 1; }
|
|
}
|
|
@keyframes modal-scale-in {
|
|
from { opacity: 0; transform: scale(0.96); }
|
|
to { opacity: 1; transform: scale(1); }
|
|
}
|
|
|
|
/* Login modal (uses shared Modal) */
|
|
.login-modal-tabs {
|
|
display: flex;
|
|
border-bottom: 1px solid var(--border);
|
|
padding: 0 16px;
|
|
gap: 4px;
|
|
}
|
|
.login-modal-tab {
|
|
padding: 14px 16px;
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
color: var(--text-muted);
|
|
background: none;
|
|
border: none;
|
|
border-bottom: 2px solid transparent;
|
|
margin-bottom: -1px;
|
|
cursor: pointer;
|
|
}
|
|
.login-modal-tab:hover { color: var(--text); }
|
|
.login-modal-tab.active {
|
|
color: var(--accent);
|
|
border-bottom-color: var(--accent);
|
|
}
|
|
.login-modal-body {
|
|
padding: 28px 24px;
|
|
}
|
|
.login-method {
|
|
margin-bottom: 24px;
|
|
}
|
|
.login-method-title {
|
|
font-size: 1.125rem;
|
|
font-weight: 600;
|
|
color: var(--text);
|
|
margin: 0 0 8px 0;
|
|
}
|
|
.login-method-desc {
|
|
font-size: 13px;
|
|
color: var(--text-muted);
|
|
margin-bottom: 16px;
|
|
line-height: 1.55;
|
|
max-width: 360px;
|
|
}
|
|
.login-method-desc code {
|
|
font-size: 12px;
|
|
background: var(--bg-card-hover);
|
|
padding: 2px 8px;
|
|
border-radius: 6px;
|
|
color: var(--text);
|
|
}
|
|
.login-modal-input,
|
|
.login-modal-textarea {
|
|
width: 100%;
|
|
padding: 12px 14px;
|
|
font-size: 14px;
|
|
border: 1px solid var(--border);
|
|
border-radius: 8px;
|
|
margin-bottom: 14px;
|
|
box-sizing: border-box;
|
|
background: var(--bg);
|
|
color: var(--text);
|
|
}
|
|
.login-modal-textarea { resize: vertical; min-height: 80px; }
|
|
.login-modal-input:focus,
|
|
.login-modal-textarea:focus {
|
|
outline: none;
|
|
border-color: var(--accent);
|
|
box-shadow: 0 0 0 2px rgba(249, 115, 22, 0.2);
|
|
}
|
|
.login-method-btn {
|
|
width: 100%;
|
|
height: 48px;
|
|
padding: 0 20px;
|
|
font-size: 15px;
|
|
font-weight: 500;
|
|
background: linear-gradient(135deg, var(--accent) 0%, #fb923c 100%);
|
|
color: #fff;
|
|
border: none;
|
|
cursor: pointer;
|
|
border-radius: 10px;
|
|
transition: opacity 0.2s;
|
|
}
|
|
.login-method-btn:hover:not(:disabled) { opacity: 0.95; }
|
|
.login-method-btn:disabled { opacity: 0.5; cursor: not-allowed; }
|
|
.login-modal-error {
|
|
margin: 14px 0 0;
|
|
font-size: 14px;
|
|
color: var(--error);
|
|
}
|
|
.login-modal-inline-error {
|
|
font-size: 13px;
|
|
color: var(--error);
|
|
margin: -8px 0 12px 0;
|
|
}
|
|
.login-modal-secondary-link {
|
|
display: block;
|
|
margin-top: 14px;
|
|
font-size: 13px;
|
|
color: var(--text-muted);
|
|
background: none;
|
|
border: none;
|
|
padding: 0;
|
|
cursor: pointer;
|
|
text-decoration: underline;
|
|
}
|
|
.login-modal-secondary-link:hover {
|
|
color: var(--accent);
|
|
}
|
|
|
|
/* Login modal: Remote signer segmented control */
|
|
.login-segment {
|
|
display: flex;
|
|
border: 1px solid var(--border);
|
|
border-radius: 10px;
|
|
padding: 4px;
|
|
margin-bottom: 24px;
|
|
background: var(--bg);
|
|
}
|
|
.login-segment-option {
|
|
flex: 1;
|
|
padding: 10px 16px;
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
color: var(--text-muted);
|
|
background: transparent;
|
|
border: none;
|
|
border-radius: 8px;
|
|
cursor: pointer;
|
|
transition: color 0.2s, background 0.2s;
|
|
}
|
|
.login-segment-option:hover {
|
|
color: var(--text);
|
|
}
|
|
.login-segment-option[aria-pressed="true"] {
|
|
background: var(--bg-card-hover);
|
|
color: var(--accent);
|
|
}
|
|
.login-segment-option:focus-visible {
|
|
outline: 2px solid var(--accent);
|
|
outline-offset: 2px;
|
|
}
|
|
|
|
/* Remote signer QR card */
|
|
.remote-signer-qr-card {
|
|
min-width: 220px;
|
|
min-height: 220px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background: var(--bg);
|
|
border: 1px solid var(--border);
|
|
border-radius: var(--radius-card);
|
|
padding: 20px;
|
|
margin: 0 auto 16px;
|
|
}
|
|
.remote-signer-qr-card img {
|
|
display: block;
|
|
width: 100%;
|
|
height: auto;
|
|
max-width: 220px;
|
|
max-height: 220px;
|
|
}
|
|
.remote-signer-qr-placeholder {
|
|
font-size: 14px;
|
|
color: var(--text-muted);
|
|
}
|
|
.remote-signer-waiting {
|
|
font-size: 13px;
|
|
color: var(--text-muted);
|
|
margin: 0 auto 12px;
|
|
text-align: center;
|
|
}
|
|
.remote-signer-connection-row {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
margin-bottom: 20px;
|
|
}
|
|
.remote-signer-connection-row input {
|
|
flex: 1;
|
|
min-width: 0;
|
|
padding: 10px 12px;
|
|
font-size: 12px;
|
|
font-family: ui-monospace, monospace;
|
|
border: 1px solid var(--border);
|
|
border-radius: 8px;
|
|
background: var(--bg-card);
|
|
color: var(--text-muted);
|
|
}
|
|
.remote-signer-copy-btn {
|
|
flex-shrink: 0;
|
|
padding: 10px 16px;
|
|
font-size: 13px;
|
|
font-weight: 500;
|
|
background: var(--bg-card-hover);
|
|
color: var(--text-muted);
|
|
border: 1px solid var(--border);
|
|
border-radius: 8px;
|
|
cursor: pointer;
|
|
}
|
|
.remote-signer-copy-btn:hover {
|
|
background: var(--border);
|
|
color: var(--text);
|
|
}
|
|
.remote-signer-copy-btn:focus-visible {
|
|
outline: 2px solid var(--accent);
|
|
outline-offset: 2px;
|
|
}
|
|
.remote-signer-regenerate-btn {
|
|
padding: 10px 18px;
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
background: var(--bg-card);
|
|
color: var(--text-muted);
|
|
border: 1px solid var(--border);
|
|
border-radius: 10px;
|
|
cursor: pointer;
|
|
}
|
|
.remote-signer-regenerate-btn:hover {
|
|
background: var(--bg-card-hover);
|
|
color: var(--text);
|
|
}
|
|
|
|
@media (max-width: 640px) {
|
|
.remote-signer-qr-card {
|
|
min-width: 180px;
|
|
min-height: 180px;
|
|
padding: 16px;
|
|
}
|
|
.remote-signer-qr-card img {
|
|
max-width: 180px;
|
|
max-height: 180px;
|
|
}
|
|
}
|
|
|
|
/* Claim flow modals */
|
|
.claim-modal-content {
|
|
padding: 28px 24px;
|
|
}
|
|
.claim-quote-amount {
|
|
text-align: center;
|
|
margin-bottom: 16px;
|
|
}
|
|
.claim-quote-amount-value {
|
|
font-size: 2.25rem;
|
|
font-weight: 700;
|
|
color: var(--accent);
|
|
font-variant-numeric: tabular-nums;
|
|
}
|
|
.claim-quote-amount-unit {
|
|
font-size: 1rem;
|
|
color: var(--text-muted);
|
|
margin-left: 8px;
|
|
}
|
|
.claim-quote-countdown {
|
|
text-align: center;
|
|
font-size: 15px;
|
|
color: var(--text-muted);
|
|
margin-bottom: 20px;
|
|
}
|
|
.claim-quote-expired {
|
|
color: var(--error);
|
|
}
|
|
.claim-quote-address {
|
|
background: var(--bg);
|
|
border: 1px solid var(--border);
|
|
border-radius: 10px;
|
|
padding: 14px 18px;
|
|
margin-bottom: 28px;
|
|
}
|
|
.claim-quote-address-label {
|
|
display: block;
|
|
font-size: 11px;
|
|
font-weight: 600;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.05em;
|
|
color: var(--text-soft);
|
|
margin-bottom: 6px;
|
|
}
|
|
.claim-quote-address-value {
|
|
font-size: 14px;
|
|
color: var(--text);
|
|
word-break: break-all;
|
|
}
|
|
.claim-modal-actions {
|
|
display: flex;
|
|
gap: 14px;
|
|
flex-wrap: wrap;
|
|
}
|
|
.claim-modal-actions .btn-primary,
|
|
.claim-modal-actions .btn-secondary {
|
|
flex: 1;
|
|
min-width: 100px;
|
|
height: 48px;
|
|
padding: 0 24px;
|
|
font-size: 15px;
|
|
font-weight: 500;
|
|
border-radius: 10px;
|
|
cursor: pointer;
|
|
border: none;
|
|
transition: opacity 0.2s, transform 0.2s;
|
|
}
|
|
.claim-modal-actions .btn-primary {
|
|
background: linear-gradient(135deg, var(--accent) 0%, #fb923c 100%);
|
|
color: #fff;
|
|
}
|
|
.claim-modal-actions .btn-primary:hover:not(:disabled) {
|
|
opacity: 0.95;
|
|
transform: translateY(-1px);
|
|
}
|
|
.claim-modal-actions .btn-primary:disabled {
|
|
opacity: 0.5;
|
|
cursor: not-allowed;
|
|
transform: none;
|
|
}
|
|
.claim-modal-actions .btn-secondary {
|
|
background: var(--bg);
|
|
color: var(--text-muted);
|
|
border: 1px solid var(--border);
|
|
}
|
|
.claim-modal-actions .btn-secondary:hover:not(:disabled) {
|
|
background: var(--bg-card-hover);
|
|
color: var(--text);
|
|
}
|
|
.claim-quote-error .claim-modal-error-text {
|
|
color: var(--error);
|
|
margin-bottom: 24px;
|
|
font-size: 15px;
|
|
word-break: break-word;
|
|
}
|
|
.claim-success-content {
|
|
text-align: center;
|
|
}
|
|
.claim-success-amount-value {
|
|
font-size: 2.25rem;
|
|
font-weight: 700;
|
|
color: var(--success);
|
|
font-variant-numeric: tabular-nums;
|
|
}
|
|
.claim-success-amount-unit {
|
|
display: block;
|
|
font-size: 1rem;
|
|
color: var(--text-muted);
|
|
margin-top: 6px;
|
|
}
|
|
.claim-success-next {
|
|
font-size: 15px;
|
|
color: var(--text-muted);
|
|
margin: 20px 0 28px;
|
|
}
|
|
.claim-success-next strong { color: var(--text); }
|
|
.claim-success-close {
|
|
width: 100%;
|
|
max-width: 220px;
|
|
height: 48px;
|
|
font-size: 15px;
|
|
font-weight: 500;
|
|
background: linear-gradient(135deg, var(--accent) 0%, #fb923c 100%);
|
|
color: #fff;
|
|
border: none;
|
|
border-radius: 10px;
|
|
cursor: pointer;
|
|
transition: opacity 0.2s;
|
|
}
|
|
.claim-success-close:hover {
|
|
opacity: 0.95;
|
|
}
|
|
.claim-denial-card {
|
|
margin-top: 20px;
|
|
padding: 20px 24px;
|
|
background: var(--error-bg);
|
|
border: 1px solid rgba(248, 113, 113, 0.3);
|
|
border-radius: var(--radius-card);
|
|
}
|
|
.claim-denial-message {
|
|
color: var(--error);
|
|
font-size: 15px;
|
|
margin-bottom: 10px;
|
|
}
|
|
.claim-denial-next {
|
|
font-size: 14px;
|
|
color: var(--text-muted);
|
|
margin-bottom: 14px;
|
|
}
|
|
.claim-denial-dismiss {
|
|
font-size: 14px;
|
|
padding: 10px 18px;
|
|
background: var(--bg-card);
|
|
color: var(--text-muted);
|
|
border: 1px solid var(--border);
|
|
border-radius: 8px;
|
|
cursor: pointer;
|
|
}
|
|
.claim-denial-dismiss:hover {
|
|
background: var(--bg-card-hover);
|
|
color: var(--text);
|
|
}
|
|
|
|
/* Claim flow layout and step indicator */
|
|
.claim-flow-content {
|
|
padding: 0;
|
|
}
|
|
.claim-flow-layout {
|
|
display: flex;
|
|
gap: 32px;
|
|
align-items: flex-start;
|
|
}
|
|
.claim-flow-main {
|
|
flex: 1;
|
|
min-width: 0;
|
|
}
|
|
.claim-flow-main h2 {
|
|
margin-bottom: 8px;
|
|
}
|
|
.claim-flow-desc {
|
|
margin-bottom: 24px;
|
|
}
|
|
.claim-flow-address-section {
|
|
margin-top: 24px;
|
|
}
|
|
.claim-flow-input-hint {
|
|
font-size: 13px;
|
|
color: var(--text-soft);
|
|
margin-top: 6px;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.claim-step-indicator {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0;
|
|
padding-top: 4px;
|
|
}
|
|
.claim-step-indicator-item {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
position: relative;
|
|
}
|
|
.claim-step-indicator-dot {
|
|
width: 12px;
|
|
height: 12px;
|
|
border-radius: 50%;
|
|
background: var(--border);
|
|
flex-shrink: 0;
|
|
transition: background 0.2s, box-shadow 0.2s;
|
|
}
|
|
.claim-step-indicator-item--active .claim-step-indicator-dot {
|
|
background: var(--accent);
|
|
box-shadow: 0 0 0 2px var(--bg), 0 0 0 4px var(--accent);
|
|
}
|
|
.claim-step-indicator-item--past .claim-step-indicator-dot {
|
|
background: var(--accent-soft);
|
|
}
|
|
.claim-step-indicator-label {
|
|
font-size: 13px;
|
|
color: var(--text-muted);
|
|
font-weight: 500;
|
|
}
|
|
.claim-step-indicator-item--active .claim-step-indicator-label {
|
|
color: var(--text);
|
|
}
|
|
.claim-step-indicator-line {
|
|
position: absolute;
|
|
left: 5px;
|
|
top: 20px;
|
|
bottom: -12px;
|
|
width: 2px;
|
|
background: var(--border);
|
|
}
|
|
.claim-step-indicator-item:last-child .claim-step-indicator-line {
|
|
display: none;
|
|
}
|
|
|
|
/* Claim wizard: horizontal stepper, one step visible (no card) */
|
|
.claim-wizard-content {
|
|
padding: 0;
|
|
}
|
|
.claim-wizard-root {
|
|
max-width: 480px;
|
|
width: 100%;
|
|
}
|
|
@media (min-width: 1280px) {
|
|
.claim-wizard-root {
|
|
max-width: 680px;
|
|
margin: 0 auto;
|
|
padding: 40px 0;
|
|
min-height: 480px;
|
|
}
|
|
.claim-wizard-header {
|
|
padding: 0 0 var(--space-md);
|
|
margin-bottom: var(--space-lg);
|
|
border-bottom: 1px solid var(--border);
|
|
}
|
|
.claim-wizard-header-row {
|
|
margin-bottom: var(--space-md);
|
|
}
|
|
.claim-wizard-body {
|
|
padding: 0;
|
|
min-height: 280px;
|
|
}
|
|
}
|
|
.claim-wizard-header {
|
|
padding: 20px 24px 16px;
|
|
border-bottom: 1px solid var(--border);
|
|
}
|
|
.claim-wizard-header-row {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 12px;
|
|
margin-bottom: 20px;
|
|
}
|
|
.claim-wizard-title {
|
|
font-size: 1.25rem;
|
|
font-weight: 600;
|
|
margin: 0;
|
|
}
|
|
.claim-wizard-disconnect {
|
|
font-size: 13px;
|
|
color: var(--text-muted);
|
|
background: none;
|
|
border: none;
|
|
cursor: pointer;
|
|
padding: 4px 8px;
|
|
text-decoration: underline;
|
|
}
|
|
.claim-wizard-disconnect:hover {
|
|
color: var(--text);
|
|
}
|
|
.claim-wizard-body {
|
|
padding: 24px;
|
|
min-height: 200px;
|
|
}
|
|
@media (prefers-reduced-motion: reduce) {
|
|
.claim-wizard-body {
|
|
transition: none;
|
|
}
|
|
}
|
|
|
|
/* Horizontal step indicator */
|
|
.step-indicator {
|
|
margin: 0;
|
|
}
|
|
.step-indicator-list {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
list-style: none;
|
|
gap: 0;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
.step-indicator-item {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
flex: 0 0 auto;
|
|
}
|
|
.step-indicator-connector {
|
|
flex: 1;
|
|
min-width: 20px;
|
|
height: 2px;
|
|
background: var(--border);
|
|
margin: 0 4px;
|
|
}
|
|
.step-indicator-marker {
|
|
width: 28px;
|
|
height: 28px;
|
|
border-radius: 50%;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 13px;
|
|
font-weight: 600;
|
|
background: var(--border);
|
|
color: var(--text-muted);
|
|
transition: background 0.2s, color 0.2s;
|
|
}
|
|
.step-indicator-item--current .step-indicator-marker {
|
|
background: var(--accent);
|
|
color: var(--bg);
|
|
}
|
|
.step-indicator-item--completed .step-indicator-marker {
|
|
background: var(--accent-soft);
|
|
color: var(--bg);
|
|
}
|
|
.step-indicator-item--future .step-indicator-marker {
|
|
opacity: 0.5;
|
|
}
|
|
.step-indicator-number {
|
|
line-height: 1;
|
|
}
|
|
.step-indicator-label {
|
|
font-size: 12px;
|
|
font-weight: 500;
|
|
color: var(--text-muted);
|
|
}
|
|
.step-indicator-item--current .step-indicator-label {
|
|
color: var(--text);
|
|
}
|
|
.step-indicator-item--future .step-indicator-label {
|
|
opacity: 0.6;
|
|
}
|
|
|
|
/* Wizard step content */
|
|
.claim-wizard-step {
|
|
animation: claim-wizard-step-in 0.25s ease-out;
|
|
}
|
|
@media (prefers-reduced-motion: reduce) {
|
|
.claim-wizard-step {
|
|
animation: none;
|
|
}
|
|
}
|
|
@keyframes claim-wizard-step-in {
|
|
from {
|
|
opacity: 0;
|
|
transform: translateY(4px);
|
|
}
|
|
to {
|
|
opacity: 1;
|
|
transform: translateY(0);
|
|
}
|
|
}
|
|
.claim-wizard-step-title {
|
|
font-size: 1.1rem;
|
|
font-weight: 600;
|
|
margin-bottom: 8px;
|
|
}
|
|
.claim-wizard-step-desc {
|
|
font-size: 14px;
|
|
color: var(--text-muted);
|
|
margin-bottom: 20px;
|
|
line-height: 1.5;
|
|
}
|
|
.claim-wizard-connect-cta .address-row button {
|
|
width: 100%;
|
|
min-height: 48px;
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
}
|
|
.claim-wizard-connect-cta .connect-pill-wrap {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.claim-wizard-address-row {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 6px;
|
|
margin-bottom: 12px;
|
|
}
|
|
.claim-wizard-address-row label {
|
|
font-size: 13px;
|
|
font-weight: 500;
|
|
color: var(--text-muted);
|
|
}
|
|
.claim-wizard-address-row input {
|
|
width: 100%;
|
|
padding: 12px 14px;
|
|
font-size: 15px;
|
|
border: 1px solid var(--border);
|
|
border-radius: var(--radius);
|
|
background: var(--bg);
|
|
color: var(--text);
|
|
}
|
|
.claim-wizard-address-row input:disabled {
|
|
opacity: 0.8;
|
|
}
|
|
.claim-wizard-profile-badge {
|
|
font-size: 12px;
|
|
color: var(--accent-soft);
|
|
}
|
|
.claim-wizard-input-hint {
|
|
font-size: 13px;
|
|
color: var(--text-soft);
|
|
margin-top: 4px;
|
|
margin-bottom: 12px;
|
|
}
|
|
.claim-wizard-progress {
|
|
margin: 16px 0;
|
|
}
|
|
.claim-wizard-progress-bar {
|
|
height: 4px;
|
|
background: var(--border);
|
|
border-radius: 2px;
|
|
overflow: hidden;
|
|
margin-bottom: 10px;
|
|
}
|
|
.claim-wizard-progress-bar::after {
|
|
content: "";
|
|
display: block;
|
|
height: 100%;
|
|
width: 40%;
|
|
background: var(--accent);
|
|
animation: claim-wizard-progress-pulse 1s ease-in-out infinite;
|
|
}
|
|
@media (prefers-reduced-motion: reduce) {
|
|
.claim-wizard-progress-bar::after {
|
|
animation: none;
|
|
width: 60%;
|
|
}
|
|
}
|
|
@keyframes claim-wizard-progress-pulse {
|
|
0%, 100% { opacity: 0.7; }
|
|
50% { opacity: 1; }
|
|
}
|
|
.claim-wizard-progress-text {
|
|
font-size: 14px;
|
|
color: var(--text-muted);
|
|
}
|
|
.claim-wizard-step-actions {
|
|
margin-top: 20px;
|
|
}
|
|
@media (min-width: 1280px) {
|
|
.claim-wizard-step-actions { margin-top: 20px; }
|
|
.claim-wizard-denial-wrap { margin-top: 32px; }
|
|
}
|
|
.claim-wizard-step-actions--row {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 12px;
|
|
}
|
|
.claim-wizard-btn-primary {
|
|
min-height: 44px;
|
|
padding: 12px 24px;
|
|
font-weight: 600;
|
|
}
|
|
.claim-wizard-denial-wrap {
|
|
margin-top: 20px;
|
|
}
|
|
.claim-wizard-denial-wrap .claim-denial-panel {
|
|
margin: 0;
|
|
}
|
|
|
|
/* Denial panel actions row */
|
|
.claim-denial-panel-actions {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 10px;
|
|
margin-top: 16px;
|
|
}
|
|
.claim-denial-panel-check-again {
|
|
min-height: 40px;
|
|
}
|
|
|
|
/* Confirm step */
|
|
.claim-wizard-quote-amount {
|
|
display: flex;
|
|
align-items: baseline;
|
|
gap: 8px;
|
|
margin: 16px 0 12px;
|
|
}
|
|
.claim-wizard-quote-amount-value {
|
|
font-size: 2.25rem;
|
|
font-weight: 700;
|
|
color: var(--accent);
|
|
font-variant-numeric: tabular-nums;
|
|
}
|
|
.claim-wizard-quote-amount-unit {
|
|
font-size: 16px;
|
|
color: var(--text-muted);
|
|
}
|
|
.claim-wizard-quote-expiry {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: 4px;
|
|
margin-bottom: 16px;
|
|
font-size: 18px;
|
|
font-variant-numeric: tabular-nums;
|
|
color: var(--text-muted);
|
|
}
|
|
.claim-wizard-quote-expiry-label {
|
|
font-size: 12px;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.05em;
|
|
}
|
|
.claim-wizard-quote-destination {
|
|
font-size: 14px;
|
|
color: var(--text-muted);
|
|
margin-bottom: 20px;
|
|
}
|
|
.claim-wizard-confirm-sending,
|
|
.claim-wizard-confirm-error {
|
|
text-align: center;
|
|
padding: 24px 0;
|
|
}
|
|
.claim-wizard-confirm-sending-text {
|
|
margin-top: 16px;
|
|
font-size: 15px;
|
|
color: var(--text-muted);
|
|
}
|
|
.claim-wizard-spinner {
|
|
animation: claim-wizard-spin 0.8s linear infinite;
|
|
}
|
|
@media (prefers-reduced-motion: reduce) {
|
|
.claim-wizard-spinner {
|
|
animation: none;
|
|
opacity: 0.8;
|
|
}
|
|
}
|
|
@keyframes claim-wizard-spin {
|
|
to { transform: rotate(360deg); }
|
|
}
|
|
.claim-wizard-confirm-error-message {
|
|
color: var(--text-muted);
|
|
margin: 12px 0 20px;
|
|
}
|
|
|
|
/* Success step */
|
|
.claim-wizard-step-success {
|
|
text-align: center;
|
|
}
|
|
.claim-wizard-success-icon {
|
|
color: var(--accent-soft);
|
|
margin-bottom: 16px;
|
|
}
|
|
.claim-wizard-success-icon svg {
|
|
display: block;
|
|
margin: 0 auto;
|
|
}
|
|
.claim-wizard-success-amount {
|
|
margin-bottom: 16px;
|
|
}
|
|
.claim-wizard-success-amount-value {
|
|
font-size: 1.75rem;
|
|
font-weight: 700;
|
|
font-variant-numeric: tabular-nums;
|
|
}
|
|
.claim-wizard-success-amount-unit {
|
|
font-size: 16px;
|
|
color: var(--text-muted);
|
|
}
|
|
.claim-wizard-success-payment-hash {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 10px;
|
|
flex-wrap: wrap;
|
|
margin-bottom: 12px;
|
|
}
|
|
.claim-wizard-payment-hash-code {
|
|
font-size: 12px;
|
|
font-family: ui-monospace, monospace;
|
|
color: var(--text-muted);
|
|
background: var(--bg-card);
|
|
padding: 6px 10px;
|
|
border-radius: var(--radius);
|
|
}
|
|
.claim-wizard-copy-btn {
|
|
flex-shrink: 0;
|
|
}
|
|
.claim-wizard-success-next {
|
|
font-size: 14px;
|
|
color: var(--text-muted);
|
|
margin-bottom: 24px;
|
|
}
|
|
|
|
/* Connect pill */
|
|
.connect-pill-wrap {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
flex-wrap: wrap;
|
|
margin-bottom: 20px;
|
|
}
|
|
.connect-pill {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
padding: 8px 14px;
|
|
background: var(--bg-card);
|
|
border: 1px solid var(--border);
|
|
border-radius: 999px;
|
|
}
|
|
.connect-pill-dot {
|
|
width: 8px;
|
|
height: 8px;
|
|
border-radius: 50%;
|
|
background: var(--accent-soft);
|
|
flex-shrink: 0;
|
|
}
|
|
.connect-pill-avatar {
|
|
width: 28px;
|
|
height: 28px;
|
|
border-radius: 50%;
|
|
background: var(--border);
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 13px;
|
|
font-weight: 600;
|
|
color: var(--text-muted);
|
|
flex-shrink: 0;
|
|
}
|
|
.connect-pill-name {
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
color: var(--text);
|
|
}
|
|
.connect-pill-npub {
|
|
font-size: 12px;
|
|
color: var(--text-soft);
|
|
font-family: ui-monospace, monospace;
|
|
}
|
|
.connect-pill-disconnect {
|
|
width: 36px;
|
|
height: 36px;
|
|
border-radius: 50%;
|
|
border: 1px solid var(--border);
|
|
background: var(--bg-card);
|
|
color: var(--text-muted);
|
|
cursor: pointer;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
transition: background 0.2s, color 0.2s;
|
|
}
|
|
.connect-pill-disconnect:hover {
|
|
background: var(--bg-card-hover);
|
|
color: var(--text);
|
|
}
|
|
.connect-pill-disconnect-icon {
|
|
font-size: 18px;
|
|
line-height: 1;
|
|
}
|
|
|
|
/* Payout card */
|
|
.payout-card {
|
|
background: var(--bg-card);
|
|
border: 1px solid var(--border);
|
|
border-radius: var(--radius-card);
|
|
padding: 24px 28px;
|
|
margin-bottom: 24px;
|
|
box-shadow: var(--shadow);
|
|
}
|
|
.payout-card-potential-label {
|
|
font-size: 11px;
|
|
font-weight: 600;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.06em;
|
|
color: var(--text-soft);
|
|
margin-bottom: 6px;
|
|
}
|
|
.payout-card-amount-row {
|
|
display: flex;
|
|
align-items: baseline;
|
|
gap: 8px;
|
|
}
|
|
.payout-card-amount-value {
|
|
font-size: 2rem;
|
|
font-weight: 700;
|
|
color: var(--accent);
|
|
font-variant-numeric: tabular-nums;
|
|
}
|
|
.payout-card-amount-unit {
|
|
font-size: 14px;
|
|
color: var(--text-muted);
|
|
}
|
|
.payout-card-dots {
|
|
display: flex;
|
|
gap: 8px;
|
|
margin-top: 12px;
|
|
}
|
|
.payout-card-dot {
|
|
width: 10px;
|
|
height: 10px;
|
|
border-radius: 50%;
|
|
background: var(--border);
|
|
opacity: 0.7;
|
|
}
|
|
.payout-card-locked-subtitle {
|
|
font-size: 13px;
|
|
color: var(--text-muted);
|
|
margin-top: 8px;
|
|
margin-bottom: 12px;
|
|
}
|
|
.payout-card-expiry-bar {
|
|
height: 4px;
|
|
background: var(--border);
|
|
border-radius: 2px;
|
|
overflow: hidden;
|
|
}
|
|
.payout-card-expiry-fill {
|
|
height: 100%;
|
|
background: var(--accent);
|
|
border-radius: 2px;
|
|
transition: width 1s linear;
|
|
}
|
|
.payout-card-expired {
|
|
text-align: center;
|
|
padding: 28px;
|
|
}
|
|
.payout-card-expired-label {
|
|
font-size: 15px;
|
|
color: var(--text-muted);
|
|
margin-bottom: 14px;
|
|
}
|
|
.payout-card-recheck-btn {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
font-size: 14px;
|
|
padding: 10px 18px;
|
|
background: var(--bg-card-hover);
|
|
border: 1px solid var(--border);
|
|
border-radius: 8px;
|
|
color: var(--text);
|
|
cursor: pointer;
|
|
}
|
|
.payout-card-recheck-btn:hover {
|
|
background: var(--border);
|
|
}
|
|
.payout-card-recheck-icon {
|
|
font-size: 16px;
|
|
}
|
|
|
|
/* Claim denial panel (calm) */
|
|
.claim-denial-panel {
|
|
margin-top: 24px;
|
|
padding: 24px;
|
|
background: var(--bg-card);
|
|
border: 1px solid var(--border);
|
|
border-radius: var(--radius-card);
|
|
}
|
|
.claim-denial-panel-icon {
|
|
margin-bottom: 12px;
|
|
}
|
|
.claim-denial-panel-icon-inner {
|
|
font-size: 24px;
|
|
opacity: 0.8;
|
|
}
|
|
.claim-denial-panel-title {
|
|
font-size: 1rem;
|
|
font-weight: 600;
|
|
color: var(--text);
|
|
margin-bottom: 8px;
|
|
}
|
|
.claim-denial-panel-message {
|
|
font-size: 15px;
|
|
color: var(--text-muted);
|
|
margin-bottom: 12px;
|
|
line-height: 1.5;
|
|
}
|
|
.claim-denial-panel-countdown {
|
|
font-size: 14px;
|
|
color: var(--text-soft);
|
|
margin-bottom: 16px;
|
|
font-variant-numeric: tabular-nums;
|
|
}
|
|
.claim-denial-panel-why-trigger {
|
|
font-size: 13px;
|
|
color: var(--text-soft);
|
|
background: none;
|
|
border: none;
|
|
cursor: pointer;
|
|
padding: 0;
|
|
text-decoration: underline;
|
|
margin-bottom: 12px;
|
|
}
|
|
.claim-denial-panel-why-trigger:hover {
|
|
color: var(--text-muted);
|
|
}
|
|
.claim-denial-panel-why-content {
|
|
padding: 12px;
|
|
background: var(--bg);
|
|
border-radius: 8px;
|
|
margin-bottom: 16px;
|
|
font-size: 13px;
|
|
color: var(--text-muted);
|
|
}
|
|
.claim-denial-panel-why-code {
|
|
font-family: ui-monospace, monospace;
|
|
margin-bottom: 6px;
|
|
}
|
|
.claim-denial-panel-dismiss {
|
|
font-size: 14px;
|
|
padding: 10px 18px;
|
|
}
|
|
|
|
/* Claim modal phases */
|
|
.claim-modal-phase {
|
|
min-height: 120px;
|
|
}
|
|
.claim-modal-phase-title {
|
|
font-size: 1.125rem;
|
|
font-weight: 600;
|
|
margin-bottom: 20px;
|
|
text-align: center;
|
|
}
|
|
.claim-modal-quote-amount-large {
|
|
text-align: center;
|
|
margin-bottom: 20px;
|
|
}
|
|
.claim-modal-quote-amount-large .claim-modal-quote-amount-value {
|
|
font-size: 2.75rem;
|
|
font-weight: 700;
|
|
color: var(--accent);
|
|
font-variant-numeric: tabular-nums;
|
|
}
|
|
.claim-modal-quote-destination {
|
|
background: var(--bg);
|
|
border: 1px solid var(--border);
|
|
border-radius: 10px;
|
|
padding: 14px 18px;
|
|
margin-bottom: 20px;
|
|
}
|
|
.claim-modal-quote-destination-label {
|
|
display: block;
|
|
font-size: 11px;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.05em;
|
|
color: var(--text-soft);
|
|
margin-bottom: 6px;
|
|
}
|
|
.claim-modal-quote-destination-value {
|
|
font-size: 14px;
|
|
word-break: break-all;
|
|
color: var(--text);
|
|
}
|
|
.claim-modal-quote-expiry-ring {
|
|
text-align: center;
|
|
font-size: 14px;
|
|
color: var(--text-muted);
|
|
margin-bottom: 24px;
|
|
font-variant-numeric: tabular-nums;
|
|
}
|
|
.claim-modal-quote-expiry-label {
|
|
display: block;
|
|
font-size: 11px;
|
|
color: var(--text-soft);
|
|
margin-top: 4px;
|
|
}
|
|
.claim-modal-sending {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 40px 20px;
|
|
gap: 16px;
|
|
}
|
|
.claim-modal-sending-text {
|
|
font-size: 15px;
|
|
color: var(--text-muted);
|
|
}
|
|
.claim-modal-spinner {
|
|
animation: spin 0.8s linear infinite;
|
|
}
|
|
@keyframes spin {
|
|
to { transform: rotate(360deg); }
|
|
}
|
|
.claim-modal-success {
|
|
text-align: center;
|
|
}
|
|
.claim-modal-success-icon {
|
|
color: var(--accent-soft);
|
|
margin-bottom: 16px;
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
.claim-modal-success-icon svg {
|
|
width: 64px;
|
|
height: 64px;
|
|
}
|
|
.claim-modal-success-headline {
|
|
font-size: 1.5rem;
|
|
font-weight: 700;
|
|
color: var(--text);
|
|
margin-bottom: 16px;
|
|
font-variant-numeric: tabular-nums;
|
|
}
|
|
.claim-modal-success-payment-hash {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 10px;
|
|
margin-bottom: 12px;
|
|
flex-wrap: wrap;
|
|
}
|
|
.claim-modal-payment-hash-btn {
|
|
font-size: 12px;
|
|
font-family: ui-monospace, monospace;
|
|
color: var(--text-muted);
|
|
background: none;
|
|
border: none;
|
|
cursor: pointer;
|
|
padding: 4px 8px;
|
|
border-radius: 4px;
|
|
max-width: 200px;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
.claim-modal-payment-hash-btn:hover {
|
|
background: var(--bg-card-hover);
|
|
color: var(--text);
|
|
}
|
|
.claim-modal-success-next {
|
|
font-size: 14px;
|
|
color: var(--text-muted);
|
|
margin-bottom: 24px;
|
|
font-variant-numeric: tabular-nums;
|
|
}
|
|
.claim-modal-failure {
|
|
padding: 20px 0;
|
|
}
|
|
.claim-modal-failure-message {
|
|
font-size: 15px;
|
|
color: var(--text-muted);
|
|
margin-bottom: 24px;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
.btn-primary-large {
|
|
padding: 14px 28px;
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
}
|
|
.btn-eligibility {
|
|
min-width: 160px;
|
|
padding: 14px 24px;
|
|
font-size: 15px;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.profile-hint-pill {
|
|
margin-top: 10px;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
padding: 6px 12px;
|
|
border-radius: 999px;
|
|
background: rgba(34, 197, 94, 0.08);
|
|
border: 1px solid rgba(34, 197, 94, 0.2);
|
|
font-size: 13px;
|
|
color: var(--accent-soft);
|
|
}
|
|
.profile-hint-pill::before {
|
|
content: none;
|
|
}
|
|
.profile-hint-pill-icon {
|
|
font-weight: 700;
|
|
}
|
|
|
|
.stats-refresh {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
}
|
|
.stats-refresh-icon {
|
|
display: inline-block;
|
|
transition: transform 0.2s;
|
|
}
|
|
.stats-refresh--spinning .stats-refresh-icon {
|
|
animation: spin 0.8s linear infinite;
|
|
}
|
|
|
|
/* ---- Mobile & responsive ---- */
|
|
/* Tablet: single column, order Wizard (1) → Stats (2) → Funding (3) */
|
|
@media (max-width: 1279px) {
|
|
.container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
max-width: 100%;
|
|
padding: var(--space-xl) var(--space-lg);
|
|
padding-bottom: max(var(--space-xl), env(safe-area-inset-bottom));
|
|
gap: var(--space-xl);
|
|
}
|
|
.sidebar-left { width: 100%; max-width: 100%; order: 3; }
|
|
.sidebar-right { width: 100%; max-width: 100%; order: 2; }
|
|
.main { order: 1; min-width: unset; }
|
|
}
|
|
|
|
@media (max-width: 900px) {
|
|
.site-header { padding: 0 16px; }
|
|
.site-header-inner { height: 52px; }
|
|
.site-nav-link { padding: 8px 12px; font-size: 13px; }
|
|
.site-footer { padding: 20px 16px 24px; }
|
|
.site-footer-nav { flex-wrap: wrap; justify-content: center; gap: 16px; }
|
|
.transactions-table th,
|
|
.transactions-table td { padding: 10px 12px; font-size: 13px; }
|
|
|
|
.container {
|
|
padding: var(--space-sm) var(--space-sm) var(--space-md);
|
|
padding-bottom: max(var(--space-md), env(safe-area-inset-bottom));
|
|
gap: var(--space-md);
|
|
}
|
|
|
|
.claim-flow-layout {
|
|
flex-direction: column;
|
|
gap: 24px;
|
|
}
|
|
.claim-step-indicator {
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
gap: 16px;
|
|
}
|
|
.claim-step-indicator-line {
|
|
display: none;
|
|
}
|
|
|
|
.sidebar .label:first-of-type {
|
|
margin-top: 0;
|
|
}
|
|
|
|
.sidebar-right .stats-box {
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 480px) {
|
|
.container {
|
|
padding: 12px 12px 20px;
|
|
padding-bottom: max(20px, env(safe-area-inset-bottom));
|
|
}
|
|
|
|
.header {
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
margin-bottom: 24px;
|
|
padding-bottom: 16px;
|
|
gap: 12px;
|
|
}
|
|
|
|
.faucet-svg {
|
|
width: 64px;
|
|
height: 90px;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 1.5rem;
|
|
margin-left: 0;
|
|
}
|
|
|
|
.entropy-box {
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
width: 100%;
|
|
padding: 14px 16px;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.address-row {
|
|
flex-direction: column;
|
|
align-items: stretch;
|
|
gap: 8px;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.address-row label {
|
|
min-width: unset;
|
|
}
|
|
|
|
.address-row input[type="text"] {
|
|
width: 100%;
|
|
min-height: 44px;
|
|
font-size: 16px; /* prevents iOS zoom on focus */
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.address-row button {
|
|
min-height: 44px;
|
|
}
|
|
|
|
.stats-box {
|
|
padding: 14px 16px;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.stats-box h3 {
|
|
font-size: 11px;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.stats-box p {
|
|
font-size: 13px;
|
|
}
|
|
|
|
.stats-box .stats-recent-list {
|
|
max-height: 160px;
|
|
overflow-y: auto;
|
|
-webkit-overflow-scrolling: touch;
|
|
}
|
|
|
|
.deposit-box {
|
|
margin-top: 20px;
|
|
padding-top: 16px;
|
|
}
|
|
|
|
.deposit-box h3 {
|
|
font-size: 0.875rem;
|
|
}
|
|
|
|
.deposit-box .copy-row {
|
|
flex-direction: column;
|
|
gap: 8px;
|
|
}
|
|
|
|
.deposit-box input {
|
|
width: 100%;
|
|
min-height: 44px;
|
|
font-size: 16px; /* prevents iOS zoom on focus */
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.deposit-box button {
|
|
min-height: 44px;
|
|
width: 100%;
|
|
}
|
|
|
|
.entropy-btn {
|
|
min-height: 44px;
|
|
padding: 10px 14px;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.login-modal-overlay {
|
|
padding: 12px;
|
|
align-items: flex-end;
|
|
}
|
|
|
|
.login-modal {
|
|
max-height: 85vh;
|
|
border-radius: 12px 12px 0 0;
|
|
}
|
|
|
|
.login-modal-header,
|
|
.login-modal-body {
|
|
padding: 16px;
|
|
}
|
|
|
|
.login-method-btn {
|
|
min-height: 48px;
|
|
}
|
|
}
|
|
|
|
/* Touch-friendly: ensure minimum tap targets */
|
|
@media (pointer: coarse) {
|
|
.entropy-btn,
|
|
.address-row button,
|
|
.deposit-box button {
|
|
min-height: 44px;
|
|
}
|
|
|
|
.login-modal-tab {
|
|
min-height: 44px;
|
|
padding-left: 16px;
|
|
padding-right: 16px;
|
|
}
|
|
|
|
.sidebar a {
|
|
padding: 8px 0;
|
|
margin-bottom: 4px;
|
|
}
|
|
}
|