Browse Source

fix some margins

pull/121/head
Jelle van Snik 3 years ago
parent
commit
b98fdcd94d
  1. 2
      src/views/search/SearchLoadingView.tsx
  2. 2
      src/views/search/SearchResultsView.tsx

2
src/views/search/SearchLoadingView.tsx

@ -5,7 +5,7 @@ export function SearchLoadingView() { @@ -5,7 +5,7 @@ export function SearchLoadingView() {
const { t } = useTranslation();
return (
<Loading
className="mt-40"
className="mt-40 mb-24 "
text={t("search.loading") || "Fetching your favourite shows..."}
/>
);

2
src/views/search/SearchResultsView.tsx

@ -20,7 +20,7 @@ function SearchSuffix(props: { @@ -20,7 +20,7 @@ function SearchSuffix(props: {
const icon: Icons = allFailed ? Icons.WARNING : Icons.EYE_SLASH;
return (
<div className="mt-40 flex flex-col items-center justify-center space-y-3 text-center">
<div className="mt-40 mb-24 flex flex-col items-center justify-center space-y-3 text-center">
<IconPatch
icon={icon}
className={`text-xl ${allFailed ? "text-red-400" : "text-bink-600"}`}

Loading…
Cancel
Save