I hope someone can help me to resolve the issue. On Category page we have issue with "see all articles" button. It's configured to show only 3 articles on page, so everything above 3 is under "Show all"
Now, the problem is with button CSS.
This is what we have in category_page.hbs code:
{{#if more_articles}}
<a style="margin-bottom: 20px;" href="{{url}}" class="btn btn--primary see-all-articles">
{{t 'show_all_articles' count=article_count}}
</a>
{{/if}}
When you open category page, this is what you get:

One button is purple and another is not. Using "Inspect" option on browser, purple button has class="btn btn--primary see-all-articles"
While the another has class="see-all-articles"
Does anyone knows why this is happening and how to resolve it?
Thanks!





