Skip to content

proberge-dev/elm-grid

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

elm-grid

elm-grid is a simple helper function package for css-grid containers. It allows easier use of css-grid with less hassle. It's a small package intended for fast development.

Here is an example module:

module Main exposing (main)

import Html exposing (Html)
import Grid

main : Html msg
main =
  Grid.make
    [ Grid.height "100px"
    , Grid.width "100px"
    , Grid.alignItems Grid.Center
    , Grid.justifyItems Grid.Center
    ]
    [ Html.h1 [] [ Html.text "Hello" ]
    ]

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages