From 9c1c336ec43ddae47a910ca7c5d2996672adf157 Mon Sep 17 00:00:00 2001 From: Christine Dodrill Date: Wed, 14 Dec 2016 12:04:18 -0800 Subject: [PATCH] frontend: cleanup imports --- frontend/src/BlogEntry.purs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/frontend/src/BlogEntry.purs b/frontend/src/BlogEntry.purs index c104a78..b75399c 100644 --- a/frontend/src/BlogEntry.purs +++ b/frontend/src/BlogEntry.purs @@ -8,8 +8,8 @@ import Data.Maybe (Maybe(..)) import Network.HTTP.Affjax (AJAX, get) import Prelude (bind, pure, show, ($), (<>), (<<<)) import Pux (EffModel, noEffects) -import Pux.Html (Html, div, h1, h2, p, text) -import Pux.Html.Attributes (id_) +import Pux.Html (Html, div, h1, p, text) +import Pux.Html.Attributes (className, id_) data Action = RequestPost | ReceivePost (Either String Post) @@ -70,9 +70,9 @@ view { id: id, status: status, post: (Post post) } = case id of Nothing -> div [] [] (Just _) -> - div [] + div [ className "row" ] [ h1 [] [ text status ] - , div [] + , div [ className "col s6 offset-s3" ] [ p [ id_ "blogpost" ] [ text post.body ] ] ]