Hides logo text on mobile, removed nonexistent css class
This commit is contained in:
parent
69a478006a
commit
326e196bc3
2 changed files with 6 additions and 6 deletions
|
|
@ -28,7 +28,7 @@ export function Header() {
|
|||
className="h-full w-full transition-all duration-1000 hover:rotate-[360deg]"
|
||||
/>
|
||||
</div>
|
||||
<h1 className="font-roboto text-2xl font-bold text-navbar-text-color md:text-4xl">
|
||||
<h1 className="font-roboto text-2xl font-bold text-navbar-text-color">
|
||||
{t("header.title")}
|
||||
</h1>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
></img>
|
||||
<h1 className="font-roboto text-2xl font-bold text-navbar-text-color md:text-4xl">
|
||||
<h1 className="font-roboto invisible whitespace-nowrap font-bold text-navbar-text-color sm:visible sm:text-2xl">
|
||||
{" "}
|
||||
{t("header.title")}{" "}
|
||||
</h1>
|
||||
|
|
@ -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();
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue