Remove obsidian from the classname, it should be obvious that this is in Obsidian

This commit is contained in:
land0r 2025-02-23 20:50:51 +01:00
parent bce6c2bf9d
commit 1d580e77f1
2 changed files with 2 additions and 2 deletions

View file

@ -57,7 +57,7 @@ export default class FlowchartPlugin extends Plugin {
const config = this.mergeSymbolSettings(this.settings.config);
const diagram = flowchart.parse(source);
const container = el.createEl('div', {
cls: 'obsidian-flowchart-container',
cls: 'flowchart-container',
});
diagram.drawSVG(container, config);
container

View file

@ -7,7 +7,7 @@ If your plugin does not need CSS, delete this file.
*/
.obsidian-flowchart-container svg {
.flowchart-container svg {
width: 100%;
height: auto;
}