afidegnum / elm-bulmanizer / Bulma.CDN

stylesheet : Html msg

Include Bulma 0.7.1 in your Elm project.

import Bulma.CDN exposing (stylesheet)

view : Model -> Html msg
view model =
    div []
        [ stylesheet
        , text "wow!"
        ]

localsheet : String -> Html msg

Include Bulma 0.7.1 in your Elm project.

import Bulma.CDN exposing (localsheet)

view : Model -> Html msg
view model =
    div []
        [ stylesheet "mycustom.css"
        , text "wow!"
        ]