UI: In page header, display logged-in username in bold text
This commit is contained in:
parent
e0d7612908
commit
b914ef4d16
2 changed files with 5 additions and 1 deletions
|
@ -79,3 +79,6 @@ input[type="submit"]
|
||||||
.instance
|
.instance
|
||||||
color: #{light blue}
|
color: #{light blue}
|
||||||
font: 180% monospace
|
font: 180% monospace
|
||||||
|
|
||||||
|
.username
|
||||||
|
font-weight: bold
|
||||||
|
|
|
@ -16,7 +16,8 @@ $maybe (Entity _pid person, verified, sharer, unread) <- mperson
|
||||||
<div>
|
<div>
|
||||||
$if verified
|
$if verified
|
||||||
<span>
|
<span>
|
||||||
[You are logged in as #{personLogin person}]
|
[You are logged in as
|
||||||
|
<span .username>#{personLogin person}</span>]
|
||||||
<span>
|
<span>
|
||||||
<a href=@{SharerInboxR $ sharerIdent sharer}>
|
<a href=@{SharerInboxR $ sharerIdent sharer}>
|
||||||
[📥 Inbox]
|
[📥 Inbox]
|
||||||
|
|
Loading…
Reference in a new issue