Skip to content
This repository has been archived by the owner on Sep 6, 2018. It is now read-only.

Commit

Permalink
Non-breaking space before sorting symbols
Browse files Browse the repository at this point in the history
  • Loading branch information
Augustin82 committed Aug 29, 2018
1 parent 6f9bd37 commit a6dbb74
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Table.elm
Original file line number Diff line number Diff line change
Expand Up @@ -263,12 +263,12 @@ simpleTheadHelp ( name, status, click ) =

darkGrey : String -> Html msg
darkGrey symbol =
Html.span [ Attr.style "color" "#555" ] [ Html.text (" " ++ symbol) ]
Html.span [ Attr.style "color" "#555" ] [ Html.text ("\u{00A0}" ++ symbol) ]


lightGrey : String -> Html msg
lightGrey symbol =
Html.span [ Attr.style "color" "#ccc" ] [ Html.text (" " ++ symbol) ]
Html.span [ Attr.style "color" "#ccc" ] [ Html.text ("\u{00A0}" ++ symbol) ]


simpleRowAttrs : data -> List (Attribute msg)
Expand Down

0 comments on commit a6dbb74

Please # to comment.