Enhancement: grouped together Undo and Redo buttons on mobile (#9109)

* bugfix: put the redo and undo button under the same div so that they look grouped together

* fixed the position of the redo and undo buttons to the right
release
Abhinav Pant 2 weeks ago committed by GitHub
parent 16b86d7d16
commit 9ee0b8ffcb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -145,12 +145,14 @@ export const MobileMenu = ({
<div className="App-toolbar-content">
<MainMenuTunnel.Out />
{actionManager.renderAction("toggleEditMenu")}
{actionManager.renderAction("undo")}
{actionManager.renderAction("redo")}
{actionManager.renderAction(
appState.multiElement ? "finalize" : "duplicateSelection",
)}
{actionManager.renderAction("deleteSelectedElements")}
<div>
{actionManager.renderAction("undo")}
{actionManager.renderAction("redo")}
</div>
</div>
);
};

Loading…
Cancel
Save