From 6c2f4e1b8129527ced18bae3fb8464cce872c6ae Mon Sep 17 00:00:00 2001 From: Atridad Lahiji Date: Thu, 26 Jun 2025 23:43:15 -0600 Subject: [PATCH] Rename page header --- src/pages/terminal.astro | 35 ++++++++++++++++++----------------- 1 file changed, 18 insertions(+), 17 deletions(-) diff --git a/src/pages/terminal.astro b/src/pages/terminal.astro index 9782f4a..26aa73a 100644 --- a/src/pages/terminal.astro +++ b/src/pages/terminal.astro @@ -1,25 +1,26 @@ --- -import Layout from '../layouts/Layout.astro'; -import TerminalComponent from '../components/Terminal.tsx'; -import '../styles/global.css'; +import Layout from "../layouts/Layout.astro"; +import TerminalComponent from "../components/Terminal.tsx"; +import "../styles/global.css"; --- -
-
-

Shell Mode

-

Type 'help' to get started.

+
+
+

Terminal Mode

+

Type 'help' to get started.

+
+
+ +
-
- -
-
\ No newline at end of file + /* Remove overflow hidden from body to allow normal scrolling */ + html, + body { + height: auto; + overflow: auto; + } +