- Add NIP-65 relay list service to fetch kind 10002 events from relays - Replace configurable relay page with read-only NIP-65 relay display - Update identity page to show display name and username in same badge - Use reglisse heading font for titles throughout the UI - Navigate to You page after vault unlock instead of identities list - Add autofocus to vault password input field - Add profile metadata service for fetching kind 0 events - Add readonly mode to relay-rw component Files modified: - package.json (version bump to 0.0.6) - projects/common/src/lib/services/relay-list/relay-list.service.ts (new) - projects/common/src/lib/services/profile-metadata/profile-metadata.service.ts (new) - projects/common/src/lib/constants/fallback-relays.ts (new) - projects/*/src/app/components/home/identity/* (UI improvements) - projects/*/src/app/components/edit-identity/relays/* (NIP-65 display) - projects/*/src/app/components/vault-login/* (autofocus, navigation) - projects/common/src/lib/styles/* (heading fonts) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
41 lines
847 B
SCSS
41 lines
847 B
SCSS
.sam-text-header {
|
|
background: var(--background);
|
|
z-index: 20;
|
|
padding-top: var(--size);
|
|
padding-bottom: var(--size);
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
justify-content: center;
|
|
|
|
span {
|
|
font-family: var(--font-heading);
|
|
font-size: 24px;
|
|
font-weight: 700;
|
|
letter-spacing: 0.1rem;
|
|
}
|
|
}
|
|
|
|
.sam-footer-grid-2 {
|
|
height: 60px;
|
|
min-height: 60px;
|
|
background: var(--background-light);
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
grid-template-rows: auto;
|
|
align-items: center;
|
|
column-gap: var(--size);
|
|
padding-left: var(--size);
|
|
padding-right: var(--size);
|
|
}
|
|
|
|
.sam-card {
|
|
padding: var(--size);
|
|
background: var(--background-light);
|
|
border-radius: var(--radius-lg);
|
|
color: var(--foreground);
|
|
display: flex;
|
|
flex-direction: column;
|
|
border: 1px solid var(--border);
|
|
}
|