From 8fccfb3dc3f3a9e903ffd8ed7e3da7a16152c325 Mon Sep 17 00:00:00 2001 From: DD Date: Wed, 25 Oct 2017 16:47:56 -0400 Subject: [PATCH] Use content-box so that we dont have edges around the border --- src/components/paint-editor/paint-editor.css | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/components/paint-editor/paint-editor.css b/src/components/paint-editor/paint-editor.css index c5d3f76e..71544b7e 100644 --- a/src/components/paint-editor/paint-editor.css +++ b/src/components/paint-editor/paint-editor.css @@ -69,8 +69,9 @@ $border-radius: 0.25rem; } .canvas-container { - width: 503px; - height: 403px; + width: 500px; + height: 400px; + box-sizing: content-box; border: 1px solid #e8edf1; border-radius: .25rem; position: relative;