1
0
mirror of https://github.com/jhillyerd/inbucket.git synced 2026-01-27 05:25:58 +00:00

ui: Move div.page into Page frame

This commit is contained in:
James Hillyerd
2018-12-15 20:36:39 -08:00
parent caec5e7c17
commit af3ed04100
8 changed files with 43 additions and 46 deletions

View File

@@ -444,12 +444,12 @@ updateOpenMessage session model id =
-- VIEW
view : Session -> Model -> { title : String, modal : Maybe (Html Msg), content : Html Msg }
view : Session -> Model -> { title : String, modal : Maybe (Html Msg), content : List (Html Msg) }
view session model =
{ title = model.mailboxName ++ " - Inbucket"
, modal = viewModal model.promptPurge
, content =
div [ class "page mailbox" ]
[ div [ class "mailbox" ]
[ aside [ class "message-list-controls" ]
[ input
[ type_ "search"
@@ -480,6 +480,7 @@ view session model =
text ""
]
]
]
}