Skip to content

Instantly share code, notes, and snippets.

module Email.Invitation.View exposing (view)
import Html exposing (..)
import Html.Attributes exposing (..)
import Mjml exposing (..)
import Email.UI.Base as Base
import Email.UI.Card as Card
import Email.UI.Style as Style
@ronanyeah
ronanyeah / ExternalCSS.elm
Created December 29, 2016 18:34
Load external CSS in Elm
{--
You *can* load an external CSS file in Elm, but currently,
in Pure Elm that means adding a style element to the body instead of the head.
It does cause a flash of unstyled content, so I think it's only useful
for testing in Reactor.
--}
import Html exposing (..)