Fix borked tab cloaking page
This commit is contained in:
parent
b47e0f4ec7
commit
8d63bf5e11
3 changed files with 3 additions and 3 deletions
|
|
@ -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}
|
||||||
|
|
|
||||||
|
|
@ -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"
|
||||||
|
|
|
||||||
|
|
@ -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>
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue