From 09cca465ec1268f75a3145076906a109b17d1158 Mon Sep 17 00:00:00 2001 From: Clay Smalley Date: Mon, 16 Dec 2024 16:58:37 -0600 Subject: [PATCH] make triangle shield more rounded --- shieldlib/src/shield_helper.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/shieldlib/src/shield_helper.ts b/shieldlib/src/shield_helper.ts index d6da83d26..8518f7803 100644 --- a/shieldlib/src/shield_helper.ts +++ b/shieldlib/src/shield_helper.ts @@ -217,7 +217,7 @@ export function triangleDownShield( rectWidth: number ): Partial { textColor = textColor ?? strokeColor; - radius = radius ?? 2; + radius = radius ?? 3; return { shapeBlank: { @@ -232,10 +232,10 @@ export function triangleDownShield( }, textLayout: textConstraint("triangleDown"), padding: { - left: 1, - right: 1, - top: 2, - bottom: 1, + left: 0, + right: 0, + top: 3, + bottom: 0, }, textColor, };