diff --git a/css/styles.css b/css/styles.css index c82fde8..212d497 100644 --- a/css/styles.css +++ b/css/styles.css @@ -528,7 +528,7 @@ input[type="text"] { color: var(--clrText); font-size: var(--fsNormal); padding: 15px; - border-bottom: 3px white solid; + border-bottom: 3px var(--clrText) solid; box-sizing: border-box; } textarea { diff --git a/js/core.js b/js/core.js index e202d63..26d22b3 100644 --- a/js/core.js +++ b/js/core.js @@ -70,8 +70,8 @@ async function update_profile(profile={}) { content: JSON.stringify(profile), tags: [], }; - ev.id = await nostrjs.calculate_id(ev) - ev = await sign_event(ev) + ev.id = await nostrjs.calculate_id(ev); + ev = await sign_event(ev); broadcast_event(ev); return ev; }