Correct line-height and ul margin

This commit is contained in:
Micah Hahn 2023-05-30 16:39:32 -05:00
parent 3921933b09
commit c5dece4895

View File

@ -344,10 +344,15 @@ viewContents : { config | id : Maybe String } -> String -> Html msg
viewContents config markdown_ =
styled div
[ Css.alignSelf Css.flexStart
, Css.lineHeight (Css.px 28)
, Css.Global.children
[ Css.Global.p
[ Css.margin Css.zero
]
, Css.Global.ul
[ Css.marginTop (Css.px 10)
, Css.marginBottom Css.zero
]
]
]
[ AttributesExtra.maybe (guidanceId >> Attributes.id) config.id ]