mirror of
https://github.com/sussy-code/smov.git
synced 2024-12-20 14:37:43 +01:00
fix some margins
This commit is contained in:
parent
9fba422673
commit
b98fdcd94d
2 changed files with 2 additions and 2 deletions
|
@ -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..."}
|
||||
/>
|
||||
);
|
||||
|
|
|
@ -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…
Reference in a new issue