From 326e196bc31ac605aec5669156e70c625a1a835d Mon Sep 17 00:00:00 2001 From: incognitotgt Date: Mon, 1 Jan 2024 11:24:17 -0500 Subject: [PATCH] Hides logo text on mobile, removed nonexistent css class --- src/components/Header.tsx | 2 +- src/components/iframe/IframeHeader.tsx | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/components/Header.tsx b/src/components/Header.tsx index 8cc4b30..c71b514 100644 --- a/src/components/Header.tsx +++ b/src/components/Header.tsx @@ -28,7 +28,7 @@ export function Header() { className="h-full w-full transition-all duration-1000 hover:rotate-[360deg]" /> -

+

{t("header.title")}

diff --git a/src/components/iframe/IframeHeader.tsx b/src/components/iframe/IframeHeader.tsx index 453d56d..729c51d 100644 --- a/src/components/iframe/IframeHeader.tsx +++ b/src/components/iframe/IframeHeader.tsx @@ -39,7 +39,7 @@ export function IframeHeader(props: { url: string }) { className="h-16 w-16 transition-all duration-1000 hover:rotate-[360deg]" alt="Nebula Logo" > -

+

{" "} {t("header.title")}{" "}

@@ -98,10 +98,10 @@ export function IframeHeader(props: { url: string }) { script.onload = function () { if (!proxyWindow) return; proxyWindow.eruda.init({ - defaults: { - displaySize: 45, - theme: 'Material Palenight' - } + defaults: { + displaySize: 45, + theme: "Material Palenight" + } }); proxyWindow.eruda.show(); };