website/frontend/src/Config/Pages/HyperBlog/Helpers.elm

43 lines
1.4 KiB
Elm
Raw Normal View History

2024-12-09 19:53:09 -06:00
module Config.Pages.HyperBlog.Helpers exposing (..)
2024-12-09 19:53:09 -06:00
import Config.Format.CardFormat exposing (..)
import Config.Style.Colour exposing (colourTheme)
2024-12-08 21:35:48 -06:00
import Config.Style.Svgs exposing (..)
import Effect exposing (Effect)
import Element as E exposing (..)
import Element.Font as F
2024-12-08 21:35:48 -06:00
underConstructionMaker : Element msg
underConstructionMaker =
row
topLevelBox
[ cardMaker
[ cardTitleMaker "HYPERBLOG"
, cardFormatter
[ cardContentSpacing
[ column
fieldSpacer
[ cardSubTitleMaker
[ column []
[ row
[ spacing 10
]
[ column [ width <| px 35 ] [ html construction ]
, column
[ width fill
, F.color colourTheme.textLightOrange
, F.bold
, alignBottom
]
[ text "under construction"
]
]
]
]
]
]
]
]
]