- Add wallet tab with NWC (Nostr Wallet Connect) Lightning support - Add Cashu ecash wallet with mint management, send/receive tokens - Add Cashu deposit feature (mint via Lightning invoice) - Add token viewer showing proof amounts and timestamps - Add refresh button with auto-refresh for spent proof detection - Add browser sync warning for Cashu users on welcome screen - Add Cashu onboarding info panel with storage considerations - Add settings page sync info note explaining how to change sync - Add backups page for vault snapshot management - Add About section to identity (You) page - Fix lint accessibility issues in wallet component Files modified: - projects/common/src/lib/services/nwc/* (new) - projects/common/src/lib/services/cashu/* (new) - projects/common/src/lib/services/storage/* (extended) - projects/chrome/src/app/components/home/wallet/* - projects/firefox/src/app/components/home/wallet/* - projects/chrome/src/app/components/welcome/* - projects/firefox/src/app/components/welcome/* - projects/chrome/src/app/components/home/settings/* - projects/firefox/src/app/components/home/settings/* - projects/chrome/src/app/components/home/identity/* - projects/firefox/src/app/components/home/identity/* - projects/chrome/src/app/components/home/backups/* (new) - projects/firefox/src/app/components/home/backups/* (new) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
47 lines
781 B
SCSS
47 lines
781 B
SCSS
:host {
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
padding-left: var(--size);
|
|
padding-right: var(--size);
|
|
}
|
|
|
|
.storage-info {
|
|
margin-top: 1rem;
|
|
width: 100%;
|
|
|
|
details {
|
|
background: rgba(255, 193, 7, 0.1);
|
|
border: 1px solid var(--warning, #ffc107);
|
|
border-radius: 6px;
|
|
padding: 0.5rem;
|
|
|
|
summary {
|
|
cursor: pointer;
|
|
font-weight: 500;
|
|
font-size: 0.9rem;
|
|
color: var(--warning, #ffc107);
|
|
|
|
&:hover {
|
|
text-decoration: underline;
|
|
}
|
|
}
|
|
|
|
p {
|
|
margin: 0.75rem 0 0 0;
|
|
font-size: 0.85rem;
|
|
line-height: 1.4;
|
|
color: var(--text-muted, #6c757d);
|
|
|
|
&:last-child {
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
strong {
|
|
color: var(--text, #212529);
|
|
}
|
|
}
|
|
}
|
|
}
|