mirror of
https://github.com/tulir/gomuks.git
synced 2025-04-20 10:33:41 -05:00
web/devtools: add space between back and send buttons
This commit is contained in:
parent
d093ea2f90
commit
c78ef2e97b
1 changed files with 2 additions and 0 deletions
|
@ -115,9 +115,11 @@ const StateEventView = ({ room, type, stateKey, onBack, onDone }: StateEventView
|
||||||
<div className="nav-buttons">
|
<div className="nav-buttons">
|
||||||
{editingContent !== null ? <>
|
{editingContent !== null ? <>
|
||||||
<button onClick={isNewEvent ? onBack : stopEdit}>Back</button>
|
<button onClick={isNewEvent ? onBack : stopEdit}>Back</button>
|
||||||
|
<div className="spacer"/>
|
||||||
<button onClick={sendEdit}>Send</button>
|
<button onClick={sendEdit}>Send</button>
|
||||||
</> : <>
|
</> : <>
|
||||||
<button onClick={onBack}>Back</button>
|
<button onClick={onBack}>Back</button>
|
||||||
|
<div className="spacer"/>
|
||||||
<button onClick={startEdit}>Edit</button>
|
<button onClick={startEdit}>Edit</button>
|
||||||
</>}
|
</>}
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Add table
Reference in a new issue