fix: fix invalid CSS for class diagram

`.divider` had a `stroke` property of `1` that was invalid.

This looks like a typo from PR
https://github.com/mermaid-js/mermaid/pull/1567,
as the `src/theme/class.scss` file's `.divider` section correctly
shows `stroke-width: 1;`.

Fixes: https://github.com/mermaid-js/mermaid/pull/1567
This commit is contained in:
Alois Klink
2023-04-13 05:42:02 +01:00
parent 727bf30824
commit 83d7d6c48f

View File

@@ -41,7 +41,7 @@ const getStyles = (options) =>
.divider {
stroke: ${options.nodeBorder};
stroke: 1;
stroke-width: 1;
}
g.clickable {