summaryrefslogtreecommitdiffstats
path: root/src/Header.elm
diff options
context:
space:
mode:
authorJan Tuomi <jan.tuomi@valuemotive.com>2021-11-05 09:02:55 +0200
committerJan Tuomi <jan.tuomi@valuemotive.com>2021-11-05 09:02:55 +0200
commit32a6ffc0c117b4ef28ea9f74517de77f8fafff1a (patch)
treef2f27d060b9f4f1b2a71684ce5e43e6a65b1a9ab /src/Header.elm
parent0f0f194cef76a5c1b815a793314e0aca745dd311 (diff)
Styling
Diffstat (limited to 'src/Header.elm')
-rw-r--r--src/Header.elm3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/Header.elm b/src/Header.elm
index 36469aa..60b2309 100644
--- a/src/Header.elm
+++ b/src/Header.elm
@@ -21,7 +21,6 @@ styles =
, logoutButton =
css
[ marginLeft (px 10)
- , cursor pointer
]
, flexPad = css [ flex (int 1) ]
}
@@ -33,6 +32,6 @@ headerView model =
[ a [ href "/" ] [ h1 [] [ text "😎 SOMEBOOK" ] ]
, div [ styles.flexPad ] []
, div [] [ "Logged in as {0}" |> templ [ model.userData.name ] |> text ]
- , button [ styles.logoutButton, onClick RequestLogout ] [ text "Logout" ]
+ , button [ styles.logoutButton, onClick RequestLogout ] [ text "Log out" ]
]
]