From 0a8a6e58257a1b195f5a360a49aaa7b8d7d775d9 Mon Sep 17 00:00:00 2001 From: Dion Moult Date: Mon, 13 Feb 2023 22:27:56 +1100 Subject: [PATCH] Fix #2383. Don't default text alignment via CSS, let attributes take precedence. --- src/blenderbim/blenderbim/bim/data/styles/default.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/blenderbim/blenderbim/bim/data/styles/default.css b/src/blenderbim/blenderbim/bim/data/styles/default.css index 09adb822bc..e62c6822a1 100644 --- a/src/blenderbim/blenderbim/bim/data/styles/default.css +++ b/src/blenderbim/blenderbim/bim/data/styles/default.css @@ -19,7 +19,7 @@ */ * { stroke-linecap: round; stroke-linejoin: round; } -text { /* 2.5mm */ fill: black; stroke: none; font-family: 'OpenGost Type B TT'; font-size: 4.13px; dominant-baseline: baseline; text-anchor: start; } +text { /* 2.5mm */ fill: black; stroke: none; font-family: 'OpenGost Type B TT'; font-size: 4.13px; } .cut { fill: black; stroke: black; stroke-linecap: 'round'; stroke-width: 0.35; fill-rule: evenodd; } .projection { fill: white; stroke: black; stroke-linecap: 'round'; stroke-width: 0.25; } .annotation { fill: none; stroke: black; stroke-linecap: 'round'; stroke-width: 0.25; }