Added a small tweak to styles.
Now you can control if the text wraps around the object or not.
Use |left
to align the image left without text wrapping and |left-wrap
to wrap text.
CSS used:
svg.excalidraw-svg-right-wrap {
float: right;
margin: 0px 0px 20px 20px;
}
svg.excalidraw-svg-left-wrap {
float: left;
margin: 0px 35px 20px 0px;
}
div.excalidraw-svg-right {
text-align: right;
}
div.excalidraw-svg-left {
text-align: left;
}