nathanjohnson320 / elm-ui-components / ElmUIC.Container

A container for content


type alias Container =
{ kind : ElmUIC.Theme.ColorSetting
, text : Css.Color 
}

Base model for the container

defaultContainer : Container

Instantiates the default properties of a container

{ defaultContainer | text = hex "#F00" }

container : ElmUIC.Theme.Theme -> Container -> List (Html.Styled.Attribute msg) -> List (Html.Styled.Html msg) -> Html.Styled.Html msg

A styled container

container defaultTheme defaultContainer [] []