diff --git a/style.css b/style.css index 729bc72d0..dd0895fa7 100644 --- a/style.css +++ b/style.css @@ -1856,6 +1856,10 @@ ul { padding: 30px 0; text-align: center; } +.article-votes-question { + font-size: 15px; + font-weight: normal; +} .article-vote { margin: 10px 5px; min-width: 90px; diff --git a/styles/_article.scss b/styles/_article.scss index 981766790..647b69e50 100644 --- a/styles/_article.scss +++ b/styles/_article.scss @@ -159,6 +159,11 @@ border-top: 1px solid $low-contrast-border-color; padding: 30px 0; text-align: center; + + &-question { // Explicit values for rendering h2 like a span + font-size: $font-size-base; + font-weight: normal; + } } &-vote { diff --git a/templates/article_page.hbs b/templates/article_page.hbs index 1df7e03c8..45994bdc5 100644 --- a/templates/article_page.hbs +++ b/templates/article_page.hbs @@ -148,7 +148,7 @@ {{#with article}}
- {{t 'was_this_article_helpful'}} +

{{t 'was_this_article_helpful'}}

{{vote 'up' class='button article-vote article-vote-up' selected_class="button-primary"}} {{vote 'down' class='button article-vote article-vote-down' selected_class="button-primary"}}