Skip to content

Commit

Permalink
fix(demo): make page body expand, not overflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ascpixi committed Dec 6, 2024
1 parent dd2f62b commit d6b8bba
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion demo/src/app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
}
}

body {
html, body {
color: var(--foreground);
background: var(--background);
font-family: Arial, Helvetica, sans-serif;
Expand Down
4 changes: 2 additions & 2 deletions demo/src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ export default function RootLayout({
children: React.ReactNode;
}>) {
return (
<html lang="en" className="h-full dark">
<html lang="en" className="dark">
<body
className={`${font.variable} antialiased h-full`}
className={`${font.variable} antialiased`}
>
<Providers>
{children}
Expand Down
2 changes: 1 addition & 1 deletion demo/src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { HftnnDemo } from "./HftnnDemo";

export default function Home() {
return (
<div className="h-full px-48 py-32 font-[family-name:var(--font-sans)]">
<div className="px-48 py-32 font-[family-name:var(--font-sans)]">
<header className="flex flex-col gap-4">
<div className="flex flex-col gap-2">
<p className="font-semibold text-indigo-400">Harmonic Fourier Transform for Neural Networks</p>
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit d6b8bba

Please sign in to comment.