debois / elm-mdl

Elm-port of the Material Design Lite CSS/JS library
Apache License 2.0
965 stars 133 forks source link

Hide function not working #356

Closed bruunoromero closed 1 year ago

bruunoromero commented 6 years ago

Hello,

I found a bug on hide function inside the Grid module. It code is:

hide : Device -> Style a
hide device =
    cs <|
        case device of
            All ->
                ""
            _ ->
                "mdl-cell--hide-" ++ suffix device

the last hyphen in "mdl-cell--hide- is unecessary because suffix device alredy has a hyphen at it start.