feat(ext/popup): lowercase form labels + gold required marker

.label drops text-transform: uppercase and tightens letter-spacing.
The `*` required marker gets wrapped in <span class="req"> so it
picks up the gold accent color (matches palette refresh).

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
adlee-was-taken
2026-04-24 23:15:44 -04:00
parent 3c0f8d2c5c
commit 083b01aa91
7 changed files with 17 additions and 11 deletions

View File

@@ -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;
}