From a4b017ef52137d2c1fa66ef1afb1126fb5c7edea Mon Sep 17 00:00:00 2001 From: Tessa Kelly Date: Wed, 23 Mar 2022 10:51:50 -0700 Subject: [PATCH] Fix heading order partially for text example --- styleguide-app/Examples/Text.elm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/styleguide-app/Examples/Text.elm b/styleguide-app/Examples/Text.elm index bab7d36b..c65af158 100644 --- a/styleguide-app/Examples/Text.elm +++ b/styleguide-app/Examples/Text.elm @@ -67,7 +67,8 @@ example = , toExampleCode "ugSmallBody" ] } - , Heading.h2 [ Heading.style Heading.Top ] [ Html.text "Paragraph styles" ] + , Heading.h2 [] [ Html.text "Examples" ] + , Heading.h3 [] [ Html.text "Paragraph styles" ] , viewExamples [ ( "mediumBody", Text.mediumBody ) , ( "smallBody", Text.smallBody ) @@ -75,7 +76,7 @@ example = , ( "caption", Text.caption ) ] attributes - , Heading.h2 [ Heading.style Heading.Top ] [ Html.text "Paragraph styles for user-authored content" ] + , Heading.h3 [] [ Html.text "Paragraph styles for user-authored content" ] , viewExamples [ ( "ugMediumBody", Text.ugMediumBody ) , ( "ugSmallBody", Text.ugSmallBody )