Orasund / elm-ui-framework / Framework.Grid

This module include the basic attributes for columns and rows and two variants. Any of these Attributes can be used for columns and rows.

Element.row Grid.spacedEvenly <|
    [ Element.text "left item"
    , Element.text "center item"
    , Element.text "right item"
    ]

simple : List (Element.Attribute msg)

The basic attributes for columns and rows. Check the source-code for more information.

compact : List (Element.Attribute msg)

the simple styling but without the spacing. Check the source-code for more information.

spaceEvenly : List (Element.Attribute msg)

The simple attibutes but with evenly spaced elements. Check the source-code for more information.

section : List (Element.Attribute msg)

The simple attributes but with a horizontal line at the top Check the source-code for more information.

DEPRECATED

spacedEvenly : List (Element.Attribute msg)

DEPRECATED. Use spaceEvenly instead