all repos — snow-editor @ 24ce9e9ef60be3233adb8eaa03f5a936c1ef4acd

small and cozy markdown, and orgmode editor

better
Pablo Murad pblmrd@gmail.com
Wed, 03 Jun 2026 17:19:11 -0300
commit

24ce9e9ef60be3233adb8eaa03f5a936c1ef4acd

parent

970ebf52cf5910cc2f16975f6021a80ada3a308a

4 files changed, 4 insertions(+), 4 deletions(-)

jump to
M README.mdREADME.md

@@ -133,7 +133,7 @@

## Local editor (unchanged) - Routes: `/` only for local editing -- Badge **Local** +- Badge **Online** - Autosave to `localStorage` (500ms debounce) - **Save .md** / **Save .org**, **Import**, **Clear**, mode switch
M src/lib/strings.jssrc/lib/strings.js

@@ -22,7 +22,7 @@ COPY: 'Copy',

COPIED: 'Copied', COPY_FAILED: 'Could not copy the link.', - BADGE_LOCAL: 'Local', + BADGE_ONLINE: 'Online', BADGE_SHARED: 'Shared', BADGE_READONLY: 'Read-only', BADGE_EDITING: 'Editing',
M src/pages/LocalEditorPage.jsxsrc/pages/LocalEditorPage.jsx

@@ -148,7 +148,7 @@ <header className="app-header">

<div className="app-header-text"> <div className="app-header-top"> <h1 className="app-title">Snow Editor</h1> - <StatusBadge variant="local">{STR.BADGE_LOCAL}</StatusBadge> + <StatusBadge variant="online">{STR.BADGE_ONLINE}</StatusBadge> </div> <p className="app-subtitle">Write calmly. See the result live.</p> <div className="mode-switch" role="group" aria-label="Editor mode">
M src/styles.csssrc/styles.css

@@ -552,7 +552,7 @@ background: var(--surface-glass);

color: var(--text-muted); } -.badge--local { +.badge--online { color: var(--accent-hover); border-color: rgba(122, 155, 184, 0.35); }