mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-09-04 08:06:43 +02:00
chore: Revert unrelated changes
This commit is contained in:
@@ -19,12 +19,11 @@ const draw: DrawDefinition = (text, id, version) => {
|
|||||||
const group: SVGGroup = svg.append('g');
|
const group: SVGGroup = svg.append('g');
|
||||||
group
|
group
|
||||||
.append('text')
|
.append('text')
|
||||||
.attr('x', '50%')
|
.attr('x', 100)
|
||||||
.attr('y', '50%')
|
.attr('y', 40)
|
||||||
.attr('class', 'version')
|
.attr('class', 'version')
|
||||||
.attr('font-size', 32)
|
.attr('font-size', 32)
|
||||||
.attr('dominant-baseline', 'middle')
|
.style('text-anchor', 'middle')
|
||||||
.attr('text-anchor', 'middle')
|
|
||||||
.text(`v${version}`);
|
.text(`v${version}`);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user