aboutsummaryrefslogtreecommitdiffstats
path: root/ui/src/pages/Runbooks.tsx
diff options
context:
space:
mode:
authorEllie Huxtable <ellie@atuin.sh>2024-07-16 11:32:14 +0100
committerGitHub <noreply@github.com>2024-07-16 11:32:14 +0100
commit97d978c267f2819714cf2df4999dba56bdde31d5 (patch)
treeb1e283851593b8de5266a4c6b5ff4e2c557845be /ui/src/pages/Runbooks.tsx
parentdocs(gui): update README (#2283) (diff)
downloadatuin-97d978c267f2819714cf2df4999dba56bdde31d5.zip
fix(gui): terminal resize overflow (#2285)
Diffstat (limited to 'ui/src/pages/Runbooks.tsx')
-rw-r--r--ui/src/pages/Runbooks.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/src/pages/Runbooks.tsx b/ui/src/pages/Runbooks.tsx
index 0452a578..6b517553 100644
--- a/ui/src/pages/Runbooks.tsx
+++ b/ui/src/pages/Runbooks.tsx
@@ -6,7 +6,7 @@ export default function Runbooks() {
const currentRunbook = useStore((store) => store.currentRunbook);
return (
- <div className="w-full flex flex-row ">
+ <div className="flex w-full !max-w-full flex-row ">
<List />
{currentRunbook && <Editor />}