Fix borked tab cloaking page

This commit is contained in:
MotorTruck1221 2024-03-21 00:26:51 -06:00
parent b47e0f4ec7
commit 8d63bf5e11
No known key found for this signature in database
GPG key ID: 06901A625432AC21
3 changed files with 3 additions and 3 deletions

View file

@ -17,7 +17,7 @@ const CloakPreset = (props: Props) => {
return ( return (
<div <div
onClick={cloak} onClick={cloak}
className="cursor-pointer rounded-full border border-input-border-color bg-lighter" className="flex cursor-pointer rounded-full w-16 h-16 border border-input-border-color bg-lighter"
> >
<img <img
src={props.faviconUrl === "none" ? "/logo.png" : props.faviconUrl} src={props.faviconUrl === "none" ? "/logo.png" : props.faviconUrl}

View file

@ -26,7 +26,7 @@ const TabSettings = ({ id, active }) => {
<div className="text-md pb-5 font-bold text-input-text"> <div className="text-md pb-5 font-bold text-input-text">
{t("settings.cloaking.subtitle")} {t("settings.cloaking.subtitle")}
</div> </div>
<div className="flex flex-row space-x-4"> <div className="flex flex-row flex-wrap items-center justify-center gap-4">
<CloakPreset faviconUrl="none" title="none" /> <CloakPreset faviconUrl="none" title="none" />
<CloakPreset <CloakPreset
faviconUrl="https://t1.gstatic.com/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&url=http://google.com&size=32" faviconUrl="https://t1.gstatic.com/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&url=http://google.com&size=32"

View file

@ -13,7 +13,7 @@ export function NotFound() {
originalFavicon="/logo.png" originalFavicon="/logo.png"
/> />
<section className="h-full"> <section className="h-full">
<div className="flex h-full flex-col items-center justify-center"> <div className="flex h-full flex-col items-center justify-center text-center">
<img src="/404.png" className="h-72"></img> <img src="/404.png" className="h-72"></img>
<div className="flex flex-col items-center p-6"> <div className="flex flex-col items-center p-6">
<p className="font-roboto text-4xl text-text-color font-bold">{t("404.text")}</p> <p className="font-roboto text-4xl text-text-color font-bold">{t("404.text")}</p>