Fix light mode inputs

This commit is contained in:
Thomas Mathews 2022-12-24 08:11:14 -08:00
parent 1b4d539eef
commit d6dd98f31e
2 changed files with 3 additions and 3 deletions

View file

@ -528,7 +528,7 @@ input[type="text"] {
color: var(--clrText); color: var(--clrText);
font-size: var(--fsNormal); font-size: var(--fsNormal);
padding: 15px; padding: 15px;
border-bottom: 3px white solid; border-bottom: 3px var(--clrText) solid;
box-sizing: border-box; box-sizing: border-box;
} }
textarea { textarea {

View file

@ -70,8 +70,8 @@ async function update_profile(profile={}) {
content: JSON.stringify(profile), content: JSON.stringify(profile),
tags: [], tags: [],
}; };
ev.id = await nostrjs.calculate_id(ev) ev.id = await nostrjs.calculate_id(ev);
ev = await sign_event(ev) ev = await sign_event(ev);
broadcast_event(ev); broadcast_event(ev);
return ev; return ev;
} }