land0r_obsidian-flowchart-p.../styles.css
land0r 21d3706f98 feat: add customizable flowchart rendering for Obsidian plugin
* Add - Integrate flowchart.js for rendering flowcharts within Obsidian notes
* Add - Plugin settings for customizable line width, font size, font color, line color, element color, and fill color
* Add - Support for "Yes" and "No" text customization in decision paths

* Fix - Apply fixes for SVG `xlink` namespace issues to ensure compatibility with modern SVG standards
* Fix - Address potential `NaN` errors in flowchart rendering by validating configuration values

* Update - README with detailed usage instructions, development guide, installation steps, and contribution information
* Update - Enhance `renderFlowchart` function to include a delay for smoother integration with Obsidian's rendering engine
2024-11-11 16:52:34 +01:00

13 lines
232 B
CSS

/*
This CSS file will be included with your plugin, and
available in the app when your plugin is enabled.
If your plugin does not need CSS, delete this file.
*/
.obsidian-flowchart-container svg {
width: 100%;
height: auto;
}