this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix "show more" appearing below the faux padding

+14 -12
+14 -12
src/pages/status.jsx
··· 255 255 </li> 256 256 ); 257 257 })} 258 + {showMore > 0 && ( 259 + <li> 260 + <button 261 + type="button" 262 + class="plain block" 263 + disabled={uiState === 'loading'} 264 + onClick={() => setLimit((l) => l + 40)} 265 + style={{ marginBlockEnd: '6em' }} 266 + > 267 + Show more&hellip;{' '} 268 + <span class="tag">{showMore > 40 ? '40+' : showMore}</span> 269 + </button> 270 + </li> 271 + )} 258 272 </ul> 259 - {showMore > 0 && ( 260 - <button 261 - type="button" 262 - class="plain block" 263 - disabled={uiState === 'loading'} 264 - onClick={() => setLimit((l) => l + 40)} 265 - style={{ marginBlockEnd: '6em' }} 266 - > 267 - Show more&hellip;{' '} 268 - <span class="tag">{showMore > 40 ? '40+' : showMore}</span> 269 - </button> 270 - )} 271 273 </div> 272 274 </div> 273 275 );