From 2e23a2a294ebe6f99d2a9f673b8ce39c511ad045 Mon Sep 17 00:00:00 2001 From: Vladislav Dietrich <61781601+ithelor@users.noreply.github.com> Date: Fri, 17 Feb 2023 14:00:06 +1000 Subject: [PATCH] fix: adjust svg size to match the viewBox (#134) --- src/templates/card.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/templates/card.ts b/src/templates/card.ts index b94250d6c..0a78d3595 100644 --- a/src/templates/card.ts +++ b/src/templates/card.ts @@ -37,8 +37,8 @@ export class Card { .attr('y', 1.5) .attr('rx', 5) .attr('ry', 5) - .attr('height', '98%') - .attr('width', '98%') + .attr('height', '100%') + .attr('width', '100%') .attr('stroke', `${theme.stroke}`) .attr('stroke-width', '1') .attr('fill', `${theme.background}`)