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 Jul 12, 2017
1 parent bf632ce commit 1c5534e
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 @@ -245,12 +245,12 @@ simpleTheadHelp (name, status, onClick) =

darkGrey : String -> Html msg
darkGrey symbol =
Html.span [ Attr.style [("color", "#555")] ] [ Html.text (" " ++ symbol) ]
Html.span [ Attr.style [("color", "#555")] ] [ Html.text (" " ++ symbol) ]


lightGrey : String -> Html msg
lightGrey symbol =
Html.span [ Attr.style [("color", "#ccc")] ] [ Html.text (" " ++ symbol) ]
Html.span [ Attr.style [("color", "#ccc")] ] [ Html.text (" " ++ symbol) ]


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

0 comments on commit 1c5534e

Please # to comment.