Readwise book cover stretched in minimal theme

The book cover image in Readwise is stretched. I’m using Minimal theme and tried solution of toggling off Maximize image but image remains stretched. I tried on another theme and the image was normal. Any suggestions would be helpful.

Things I have tried

It’s a Minimal issue with externally linked images, ![](https://..), in Live Preview mode.

You can use this CSS snippet to fix it:

.markdown-source-view.mod-cm6.is-readable-line-width .cm-content>img:not([width]) {
  width: auto;
}

Without snippet:

With snippet:

Fixed! Thank you so much!