Skip to content

Commit

Permalink
fix: adjust svg size to match the viewBox (#134)
Browse files Browse the repository at this point in the history
  • Loading branch information
ithelor committed Feb 17, 2023
1 parent ffc788d commit 2e23a2a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/templates/card.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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}`)
Expand Down

0 comments on commit 2e23a2a

Please sign in to comment.