pstream is dead; long live pstream taciturnaxolotl.github.io/pstream-ng/
1
fork

Configure Feed

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

fix some margins

+2 -2
+1 -1
src/views/search/SearchLoadingView.tsx
··· 5 5 const { t } = useTranslation(); 6 6 return ( 7 7 <Loading 8 - className="mt-40" 8 + className="mt-40 mb-24 " 9 9 text={t("search.loading") || "Fetching your favourite shows..."} 10 10 /> 11 11 );
+1 -1
src/views/search/SearchResultsView.tsx
··· 20 20 const icon: Icons = allFailed ? Icons.WARNING : Icons.EYE_SLASH; 21 21 22 22 return ( 23 - <div className="mt-40 flex flex-col items-center justify-center space-y-3 text-center"> 23 + <div className="mt-40 mb-24 flex flex-col items-center justify-center space-y-3 text-center"> 24 24 <IconPatch 25 25 icon={icon} 26 26 className={`text-xl ${allFailed ? "text-red-400" : "text-bink-600"}`}