- Fix project name from "Plebian" to "Plebeian" throughout codebase
- Replace gooti logo with Plebeian Market logo across all screens
- Update color scheme to match Plebeian Market (pink accent #ff3eb5)
- Add IBM Plex Mono fonts and Reglisse heading font
- Center vault create/import screen content vertically
- Reduce spacing on sync preference screen to prevent scrolling
- Add Enter key support on vault login password field
- Update options page with new logo and color scheme
- Bump version to 0.0.5
Files modified:
- package.json (version bump, name fix)
- projects/*/public/{logo.svg,options.html,manifest.json}
- projects/*/src/app/components/vault-*/*.{html,scss}
- projects/*/src/app/components/welcome/*.html
- projects/common/src/lib/styles/*.scss
- Various component files for branding updates
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
45 lines
1.1 KiB
HTML
45 lines
1.1 KiB
HTML
<div class="sam-text-header sam-mb-h">
|
|
<span>Plebeian Signer Setup - Sync Preference</span>
|
|
</div>
|
|
|
|
<span class="sam-text-muted sam-text-md sam-text-align-center2">
|
|
Plebeian Signer always encrypts sensitive data like private keys and site permissions
|
|
independent of the chosen sync mode.
|
|
</span>
|
|
|
|
<span class="sam-mt sam-text-lg">Sync : Google Chrome</span>
|
|
|
|
<span class="sam-text-muted sam-text-md sam-text-align-center2">
|
|
Your encrypted data is synced between browser instances. You need to be signed
|
|
in with your account.
|
|
</span>
|
|
|
|
<button
|
|
type="button"
|
|
class="sam-mt btn btn-primary"
|
|
(click)="onClickSync(true)"
|
|
>
|
|
<span> Sync ON</span>
|
|
</button>
|
|
|
|
<span class="sam-mt sam-text-lg">Offline</span>
|
|
|
|
<span class="sam-text-muted sam-text-md">
|
|
Your encrypted data is never uploaded to any servers. It remains in your local
|
|
browser instance.
|
|
</span>
|
|
|
|
<button
|
|
type="button"
|
|
class="sam-mt sam-mb-2 btn btn-secondary"
|
|
(click)="onClickSync(false)"
|
|
>
|
|
<span> Sync OFF</span>
|
|
</button>
|
|
|
|
<div class="sam-flex-grow"></div>
|
|
|
|
<span class="sam-text-muted sam-text-md sam-mb">
|
|
Your preference can later be changed at any time.
|
|
</span>
|