From 73c662d29979fe273562efa722ef4e582c27b005 Mon Sep 17 00:00:00 2001 From: Dan Barber Date: Tue, 27 Feb 2018 22:34:51 -0500 Subject: [PATCH] Ensure squares can be clicked on in tests --- assets/css/_board.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/assets/css/_board.scss b/assets/css/_board.scss index 05d7dfd..7d724f6 100644 --- a/assets/css/_board.scss +++ b/assets/css/_board.scss @@ -93,6 +93,11 @@ flex: 1; margin: 0.5px; + // This is to ensure the squares can be clicked on in PhantomJS + // TODO: Figure out why we need this + min-width: 2vmin; + min-height: 2vmin; + @each $colour in $colours { @each $piece in $pieces { &.#{$colour}.#{$piece} {