From d8d5acf82301149ca4d854071fde1bd1f371dc76 Mon Sep 17 00:00:00 2001 From: bon Date: Wed, 19 Mar 2025 19:40:31 +0300 Subject: [PATCH] =?UTF-8?q?=D0=BC=D0=BE=D0=B6=D0=BD=D0=BE=20=D0=B8=20?= =?UTF-8?q?=D0=B2=20=D0=BF=D1=80=D0=BE=D0=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- next.config.mjs | 4 +++- src/app/globals.css | 5 +++++ src/app/page.js | 6 ++++-- src/app/styles.css | 7 ------- 4 files changed, 12 insertions(+), 10 deletions(-) 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