diff --git a/src/Nri/Ui/Block/V4.elm b/src/Nri/Ui/Block/V4.elm index 73a51d6f..1397d493 100644 --- a/src/Nri/Ui/Block/V4.elm +++ b/src/Nri/Ui/Block/V4.elm @@ -278,13 +278,13 @@ renderContent content_ styles = tag = case markdown of Bold -> - strong [] + strong [ css styles ] Italic -> - em [] + em [ css styles ] in contents - |> List.map (\c -> renderContent c styles) + |> List.map (\c -> renderContent c []) |> tag