From 1c5534e1c19a9db1576fa34da47ed958bb646fbf Mon Sep 17 00:00:00 2001 From: Augustin Date: Wed, 12 Jul 2017 14:04:27 +0200 Subject: [PATCH] Non-breaking space before sorting symbols --- src/Table.elm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Table.elm b/src/Table.elm index cf8153c..b0cc4b4 100644 --- a/src/Table.elm +++ b/src/Table.elm @@ -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)