1
0
mirror of https://github.com/jhillyerd/inbucket.git synced 2025-12-20 19:17:01 +00:00

ui: Stop using element IDs for styling

This commit is contained in:
James Hillyerd
2018-11-25 19:52:28 -08:00
parent 0cf97f5c58
commit 22884378f3
6 changed files with 45 additions and 45 deletions

View File

@@ -86,7 +86,7 @@ view : Session -> Model -> { title : String, content : Html Msg }
view session model =
{ title = "Inbucket Monitor"
, content =
div [ id "page" ]
div [ class "page" ]
[ h1 [] [ text "Monitor" ]
, p []
[ text "Messages will be listed here shortly after delivery. "
@@ -100,7 +100,7 @@ view session model =
)
]
]
, table [ id "monitor" ]
, table [ class "monitor" ]
[ thead []
[ th [] [ text "Date" ]
, th [ class "desktop" ] [ text "From" ]