From ffebc44c64599c9860ac49cd2d479c0da8a9c9f7 Mon Sep 17 00:00:00 2001 From: Dion Moult Date: Mon, 7 Sep 2020 17:50:04 +1000 Subject: [PATCH] Make stroke linecaps use round ends. They're just nicer, you know. --- src/ifcblenderexport/blenderbim/bim/data/styles/default.css | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ifcblenderexport/blenderbim/bim/data/styles/default.css b/src/ifcblenderexport/blenderbim/bim/data/styles/default.css index 7aabe9c583..ba90071412 100644 --- a/src/ifcblenderexport/blenderbim/bim/data/styles/default.css +++ b/src/ifcblenderexport/blenderbim/bim/data/styles/default.css @@ -1,3 +1,4 @@ +* { stroke-linecap: round; } .cut { fill: black; stroke: black; stroke-linecap: 'round'; stroke-width: 0.35; } .background { fill: white; stroke: black; stroke-linecap: 'round'; stroke-width: 0.25; } .annotation { fill: none; stroke: black; stroke-linecap: 'round'; stroke-width: 0.25; }