Skip to content

Commit

Permalink
bold handle
Browse files Browse the repository at this point in the history
  • Loading branch information
hojberg committed Apr 9, 2024
1 parent 468433a commit 096b36d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/UI/ByAt.elm
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

module UI.ByAt exposing (ByAt, byAt, byUnknown, handleOnly, view)

import Html exposing (Html, div, em, span, text)
import Html exposing (Html, div, span, strong, text)
import Html.Attributes exposing (class)
import Lib.UserHandle as UserHandle exposing (UserHandle)
import Time
Expand Down Expand Up @@ -75,10 +75,10 @@ view zone now (ByAt by at) =
|> ProfileSnippet.view

ByHandle h ->
text (UserHandle.toString h)
strong [] [ text (UserHandle.toString h) ]

ByUnknown ->
em [] [ text "Unknown user" ]
strong [] [ text "Unknown user" ]
in
div
[ class "by-at" ]
Expand Down

0 comments on commit 096b36d

Please sign in to comment.