Fixed empty states spacing regression

This commit is contained in:
Sanne de Vries 2022-06-01 17:31:23 -04:00
parent facf16becc
commit 5e7678b239
5 changed files with 5 additions and 5 deletions

View File

@ -2,7 +2,7 @@
<div class="no-posts">
{{svg-jar "members-placeholder" class="gh-members-placeholder"}}
{{#if @filter}}
<h3>No activities match the current filter</h3>
<h4>No activities match the current filter</h4>
<LinkTo @route="members-activity" @query={{reset-query-params "members-activity"}} class="gh-btn gh-btn-lg">
<span>Show all activity</span>
</LinkTo>

View File

@ -518,7 +518,7 @@
margin-top: -32px;
}
.no-posts-box .no-posts h3 {
.no-posts-box .no-posts h4 {
margin: 32px 0;
}

View File

@ -105,7 +105,7 @@
{{else}}
<div class="no-posts-box">
<div class="no-posts">
<h3>You have no archived offers.</h3>
<h4>You have no archived offers.</h4>
<LinkTo @route="offers" @query={{hash type=null author=null tag=null}} class="gh-btn gh-btn-lg">
<span>Show active offers</span>
</LinkTo>

View File

@ -49,7 +49,7 @@
<span>Create a new page</span>
</LinkTo>
{{else}}
<h3>No pages match the current filter</h3>
<h4>No pages match the current filter</h4>
<LinkTo @route="pages" @query={{hash type=null author=null tag=null}} class="gh-btn">
<span>Show all pages</span>
</LinkTo>

View File

@ -53,7 +53,7 @@
<span>Write a new post</span>
</LinkTo>
{{else}}
<h3>No posts match the current filter</h3>
<h4>No posts match the current filter</h4>
<LinkTo @route="posts" @query={{hash type=null author=null tag=null}} class="gh-btn">
<span>Show all posts</span>
</LinkTo>