diff --git a/next.config.mjs b/next.config.mjs index 4678774..fbc05fc 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -1,4 +1,6 @@ /** @type {import('next').NextConfig} */ -const nextConfig = {}; +const nextConfig = { + devIndicators: false +}; export default nextConfig; diff --git a/src/app/globals.css b/src/app/globals.css index 07291e0..b222d24 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -14,6 +14,11 @@ div { height: 100%; } +div span { + position: absolute; + bottom: 0; +} + @theme inline { --color-background: var(--background); --color-foreground: var(--foreground); diff --git a/src/app/page.js b/src/app/page.js index a289ee3..3c9c235 100644 --- a/src/app/page.js +++ b/src/app/page.js @@ -3,7 +3,6 @@ import Link from "next/link"; import awesome from "/public/awesome.jpg"; import diablo from "/public/diablo.gif"; import localFont from "next/font/local"; -import styles from "./styles.css"; const jetbrainsMonoRegular = localFont({ src: "../../public/fonts/jbm/JetBrainsMonoNerdFont-Regular.ttf", @@ -24,8 +23,11 @@ export default function Page() { [ forgejo ] [ jellyfin ] -

あなたバカです。

+
+ あなたバカです。 +
+ ) } \ No newline at end of file diff --git a/src/app/styles.css b/src/app/styles.css index 1b79319..eba4d78 100644 --- a/src/app/styles.css +++ b/src/app/styles.css @@ -5,11 +5,4 @@ p { padding-left: 10px; padding-right: 10px; -} - -.lmao { - position: absolute; - bottom: 0; - text-align: center; - vertical-align: bottom; } \ No newline at end of file