mirror of
https://github.com/land0r/obsidian-flowchart-plugin.git
synced 2026-07-22 05:32:04 +00:00
Remove obsidian from the classname, it should be obvious that this is in Obsidian
This commit is contained in:
parent
bce6c2bf9d
commit
1d580e77f1
2 changed files with 2 additions and 2 deletions
2
main.ts
2
main.ts
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue