Fix light mode inputs
This commit is contained in:
parent
1b4d539eef
commit
d6dd98f31e
2 changed files with 3 additions and 3 deletions
|
@ -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 {
|
||||||
|
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue