Definitions shared by multiple modules.
An optional CSS rule.
Specifies the alignment of a container or item.
module Layout.Common exposing
( Rule
, Align(..)
)
{-| Definitions shared by multiple modules.
# Options
@docs Rule
@docs Align
-}
-- OPTIONS ---------------------------------------
{-| An optional CSS rule. -}
type alias Rule = Maybe (String, String)
{-| Specifies the alignment of a container or item. -}
type Align
= Start
| Center
| End
| Around
| Between
| Stretch