From 54d1229c9f12ee0edf65774a3335bff70ff78a84 Mon Sep 17 00:00:00 2001 From: Danila Fedorin Date: Fri, 25 May 2018 17:27:59 -0700 Subject: [PATCH] Add overlay div for neatly displaying the pieces. --- Go/View.elm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Go/View.elm b/Go/View.elm index c9e433c..2e75c1a 100644 --- a/Go/View.elm +++ b/Go/View.elm @@ -15,7 +15,7 @@ renderIndex (index, color) = div [ classList [ ("board-cell", True), extraClass ] , onClick (Place index) ] - [ + [ div [ class "overlay" ] [] ] renderBoard : Int -> Board -> Html Msg