From 950eb8805bdabf4044d799ad007c983473fd8c66 Mon Sep 17 00:00:00 2001 From: Brian Hicks Date: Wed, 16 Feb 2022 06:28:47 -0600 Subject: [PATCH] add padding for the borders --- src/Maze.elm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Maze.elm b/src/Maze.elm index a67fbb3..f8d645d 100644 --- a/src/Maze.elm +++ b/src/Maze.elm @@ -363,10 +363,10 @@ viewSquares attrs bounds graph = in Svg.svg (Attrs.viewBox - ("0 0 " - ++ String.fromInt (bounds.width * squareSize) + ("-5 -5 " + ++ String.fromInt (bounds.width * squareSize + 10) ++ " " - ++ String.fromInt (bounds.height * squareSize) + ++ String.fromInt (bounds.height * squareSize + 10) ) :: attrs.container )