From 28cabb8d16d28af9b628ed9277516ee73db849bb Mon Sep 17 00:00:00 2001 From: Michael Freno Date: Wed, 31 Dec 2025 01:36:29 -0500 Subject: [PATCH] not great but better --- src/app.css | 9 ++++++++- src/app.tsx | 5 ++++- src/components/Bars.tsx | 8 ++++++-- src/components/Typewriter.tsx | 31 +++++++++---------------------- 4 files changed, 27 insertions(+), 26 deletions(-) diff --git a/src/app.css b/src/app.css index b1cc122..8517b24 100644 --- a/src/app.css +++ b/src/app.css @@ -209,7 +209,6 @@ transition-duration: 500ms; syntax: "*"; inherits: false; - scrollbar-gutter: stable both-edges; scrollbar-color: var(--color-text) var(--color-base); } @@ -225,6 +224,13 @@ background-color: var(--color-text); color: var(--color-crust); } +#center-body { + scrollbar-width: thin; + scrollbar-gutter: stable both-edges; +} +#rightbar-content { + scrollbar-width: none; +} body { background: var(--color-base); @@ -246,6 +252,7 @@ body { background-color: var(--color-text); vertical-align: text-bottom; margin-left: 2px; + position: absolute; } /* Block cursor when done typing */ diff --git a/src/app.tsx b/src/app.tsx index 4227a23..66184ff 100644 --- a/src/app.tsx +++ b/src/app.tsx @@ -172,7 +172,10 @@ function AppLayout(props: { children: any }) { <>
-
+