fix: flex styles
This commit is contained in:
@ -79,7 +79,7 @@ export function NoteBroadcaster({
|
|||||||
.filter(a => a.message !== "Duplicate request")
|
.filter(a => a.message !== "Duplicate request")
|
||||||
.sort(a => (a.ok ? -1 : 1))
|
.sort(a => (a.ok ? -1 : 1))
|
||||||
.map(r => (
|
.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} />
|
<Icon name={r.ok ? "check" : "x"} className={r.ok ? "success" : "error"} size={24} />
|
||||||
<div className="flex flex-col grow g4">
|
<div className="flex flex-col grow g4">
|
||||||
<b>{getRelayName(r.relay)}</b>
|
<b>{getRelayName(r.relay)}</b>
|
||||||
|
@ -441,8 +441,8 @@ export function NoteCreator() {
|
|||||||
|
|
||||||
function noteCreatorFooter() {
|
function noteCreatorFooter() {
|
||||||
return (
|
return (
|
||||||
<div className="flex justify-between">
|
<div className="flex items-center justify-between">
|
||||||
<div className="flex g8">
|
<div className="flex items-center g8">
|
||||||
<ProfileImage
|
<ProfileImage
|
||||||
pubkey={login.publicKey ?? ""}
|
pubkey={login.publicKey ?? ""}
|
||||||
className="note-creator-icon"
|
className="note-creator-icon"
|
||||||
|
Reference in New Issue
Block a user