fix: flex styles

This commit is contained in:
Kieran 2023-10-17 14:57:59 +01:00
parent 2b09da6959
commit 0548e1a9e1
Signed by: Kieran
GPG Key ID: DE71CEB3925BE941
2 changed files with 3 additions and 3 deletions

View File

@ -79,7 +79,7 @@ export function NoteBroadcaster({
.filter(a => a.message !== "Duplicate request")
.sort(a => (a.ok ? -1 : 1))
.map(r => (
<div className="flex-row g16">
<div className="flex items-center g16">
<Icon name={r.ok ? "check" : "x"} className={r.ok ? "success" : "error"} size={24} />
<div className="flex flex-col grow g4">
<b>{getRelayName(r.relay)}</b>

View File

@ -441,8 +441,8 @@ export function NoteCreator() {
function noteCreatorFooter() {
return (
<div className="flex justify-between">
<div className="flex g8">
<div className="flex items-center justify-between">
<div className="flex items-center g8">
<ProfileImage
pubkey={login.publicKey ?? ""}
className="note-creator-icon"