From b6609e0a14b8240ff67009054116b4bbef44e2e6 Mon Sep 17 00:00:00 2001 From: MacRimi Date: Sat, 22 Nov 2025 21:06:44 +0100 Subject: [PATCH] Update AppImage --- AppImage/app/layout.tsx | 1 - AppImage/app/terminal.css | 57 --------------------------------------- 2 files changed, 58 deletions(-) delete mode 100644 AppImage/app/terminal.css diff --git a/AppImage/app/layout.tsx b/AppImage/app/layout.tsx index 3fe3a1b..0fcdcb1 100644 --- a/AppImage/app/layout.tsx +++ b/AppImage/app/layout.tsx @@ -5,7 +5,6 @@ import { GeistMono } from "geist/font/mono" import { ThemeProvider } from "../components/theme-provider" import { Suspense } from "react" import "./globals.css" -import "./terminal.css" export const metadata: Metadata = { title: "ProxMenux Monitor", diff --git a/AppImage/app/terminal.css b/AppImage/app/terminal.css deleted file mode 100644 index 57dcca7..0000000 --- a/AppImage/app/terminal.css +++ /dev/null @@ -1,57 +0,0 @@ -/* Removed negative left positioning that was causing misalignment */ -/* Force xterm.js to have no padding or margin */ -.xterm { - padding: 0 !important; - margin: 0 !important; - width: 100% !important; - height: 100% !important; -} - -.xterm-viewport { - padding: 0 !important; - margin: 0 !important; - width: 100% !important; -} - -.xterm-screen { - padding: 0 !important; - margin: 0 !important; - width: 100% !important; -} - -.xterm-rows { - padding: 0 !important; - margin: 0 !important; -} - -.xterm-helpers { - padding: 0 !important; - margin: 0 !important; -} - -/* Target the canvas element */ -.xterm canvas { - padding: 0 !important; - margin: 0 !important; -} - -/* Ensure all text layers have no padding */ -.xterm-cursor-layer, -.xterm-text-layer, -.xterm-selection-layer, -.xterm-link-layer { - padding: 0 !important; - margin: 0 !important; -} - -/* Ensure terminal container has no padding */ -[class*="terminal-container"] { - padding: 0 !important; - margin: 0 !important; - overflow: hidden !important; -} - -/* Hide scrollbar */ -.xterm .xterm-viewport::-webkit-scrollbar { - width: 0px !important; -}