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 }) { <>
-
+