Fix "show more" appearing below the faux padding
This commit is contained in:
parent
0a4898059b
commit
141f4a94dc
1 changed files with 14 additions and 12 deletions
|
@ -255,8 +255,8 @@ function StatusPage({ id }) {
|
||||||
</li>
|
</li>
|
||||||
);
|
);
|
||||||
})}
|
})}
|
||||||
</ul>
|
|
||||||
{showMore > 0 && (
|
{showMore > 0 && (
|
||||||
|
<li>
|
||||||
<button
|
<button
|
||||||
type="button"
|
type="button"
|
||||||
class="plain block"
|
class="plain block"
|
||||||
|
@ -267,7 +267,9 @@ function StatusPage({ id }) {
|
||||||
Show more…{' '}
|
Show more…{' '}
|
||||||
<span class="tag">{showMore > 40 ? '40+' : showMore}</span>
|
<span class="tag">{showMore > 40 ? '40+' : showMore}</span>
|
||||||
</button>
|
</button>
|
||||||
|
</li>
|
||||||
)}
|
)}
|
||||||
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|
Loading…
Add table
Reference in a new issue