From f9c7edf71779c0a77da8948f26815539b976665b Mon Sep 17 00:00:00 2001 From: Danila Fedorin Date: Fri, 25 May 2018 12:11:18 -0700 Subject: [PATCH] Add the board class. --- Go/View.elm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Go/View.elm b/Go/View.elm index 856e504..c9e433c 100644 --- a/Go/View.elm +++ b/Go/View.elm @@ -23,4 +23,4 @@ renderBoard size board = let cells = List.map (\i -> (lookup i board) |> (pair i)) <| allIndices size in - div [] <| List.map renderIndex cells + div [ class "board" ] <| List.map renderIndex cells