diff --git a/extension/src/popup/components/types/card.ts b/extension/src/popup/components/types/card.ts index 531ccce..bb4fc00 100644 --- a/extension/src/popup/components/types/card.ts +++ b/extension/src/popup/components/types/card.ts @@ -166,7 +166,7 @@ export function renderForm(app: HTMLElement, mode: 'add' | 'edit', existing: Ite
${mode === 'add' ? 'new card' : 'edit card'}
${state.error ? `
${escapeHtml(state.error)}
` : ''} -
+
diff --git a/extension/src/popup/components/types/identity.ts b/extension/src/popup/components/types/identity.ts index d74e9ac..3df175b 100644 --- a/extension/src/popup/components/types/identity.ts +++ b/extension/src/popup/components/types/identity.ts @@ -126,7 +126,7 @@ export function renderForm(app: HTMLElement, mode: 'add' | 'edit', existing: Ite
${mode === 'add' ? 'new identity' : 'edit identity'}
${state.error ? `
${escapeHtml(state.error)}
` : ''} -
+
diff --git a/extension/src/popup/components/types/key.ts b/extension/src/popup/components/types/key.ts index 51a3016..7a9b0d6 100644 --- a/extension/src/popup/components/types/key.ts +++ b/extension/src/popup/components/types/key.ts @@ -115,9 +115,9 @@ export function renderForm(app: HTMLElement, mode: 'add' | 'edit', existing: Ite
${mode === 'add' ? 'new key' : 'edit key'}
${state.error ? `
${escapeHtml(state.error)}
` : ''} -
+
-
+
diff --git a/extension/src/popup/components/types/login.ts b/extension/src/popup/components/types/login.ts index e66fc85..e050560 100644 --- a/extension/src/popup/components/types/login.ts +++ b/extension/src/popup/components/types/login.ts @@ -231,7 +231,7 @@ export function renderForm(app: HTMLElement, mode: 'add' | 'edit', existing: Ite
${mode === 'add' ? 'new login' : 'edit login'}
${state.error ? `
${escapeHtml(state.error)}
` : ''} -
+
diff --git a/extension/src/popup/components/types/secure-note.ts b/extension/src/popup/components/types/secure-note.ts index feea342..190e623 100644 --- a/extension/src/popup/components/types/secure-note.ts +++ b/extension/src/popup/components/types/secure-note.ts @@ -104,7 +104,7 @@ export function renderForm(app: HTMLElement, mode: 'add' | 'edit', existing: Ite
${mode === 'add' ? 'new secure note' : 'edit secure note'}
${state.error ? `
${escapeHtml(state.error)}
` : ''} -
+
diff --git a/extension/src/popup/components/types/totp.ts b/extension/src/popup/components/types/totp.ts index 867a24b..c7ed87a 100644 --- a/extension/src/popup/components/types/totp.ts +++ b/extension/src/popup/components/types/totp.ts @@ -205,7 +205,7 @@ export function renderForm(app: HTMLElement, mode: 'add' | 'edit', existing: Ite
${mode === 'add' ? 'new totp' : 'edit totp'}
${state.error ? `
${escapeHtml(state.error)}
` : ''} -
+
@@ -214,7 +214,7 @@ export function renderForm(app: HTMLElement, mode: 'add' | 'edit', existing: Ite

${formKind === 'steam' ? 'Steam Mobile Authenticator (5-char alphanumeric)' : 'Standard time-based codes (6 digits)'}

-
+
diff --git a/extension/src/popup/styles.css b/extension/src/popup/styles.css index 69d8d25..a698090 100644 --- a/extension/src/popup/styles.css +++ b/extension/src/popup/styles.css @@ -48,13 +48,19 @@ body { .label { font-size: 11px; - font-weight: 600; + font-weight: 500; color: #8b949e; - text-transform: uppercase; - letter-spacing: 0.5px; + text-transform: lowercase; + letter-spacing: 0.02em; margin-bottom: 4px; } +.label .req { + color: #aa812a; + margin-left: 2px; + font-weight: 600; +} + .secondary { color: #8b949e; }