atom-svg-preview
atom-svg-preview copied to clipboard
Choose background colour, show bounding box
The existing background controls are nice, but in addition I would really like to:
- Select an arbitrary colour for the background
- Toggle a border around the bounding box of the preview
This was quite easy to achieve with some custom CSS:
.svg-preview svg {
border: 1px dashed black;
background: white;
}
But some controls would be handy!