diff options
| author | Ellie Huxtable <ellie@atuin.sh> | 2024-07-16 11:32:14 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-07-16 11:32:14 +0100 |
| commit | 97d978c267f2819714cf2df4999dba56bdde31d5 (patch) | |
| tree | b1e283851593b8de5266a4c6b5ff4e2c557845be /ui/src/pages | |
| parent | docs(gui): update README (#2283) (diff) | |
| download | atuin-97d978c267f2819714cf2df4999dba56bdde31d5.zip | |
fix(gui): terminal resize overflow (#2285)
Diffstat (limited to 'ui/src/pages')
| -rw-r--r-- | ui/src/pages/Home.tsx | 2 | ||||
| -rw-r--r-- | ui/src/pages/Runbooks.tsx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ui/src/pages/Home.tsx b/ui/src/pages/Home.tsx index b7c4503d..0f0b5dcf 100644 --- a/ui/src/pages/Home.tsx +++ b/ui/src/pages/Home.tsx @@ -36,7 +36,7 @@ function Header({ name }: any) { return ( <div className="md:flex md:items-center md:justify-between"> - <div className="min-w-0 flex-1"> + <div className="flex-1"> <h2 className="text-2xl font-bold leading-7 text-gray-900 sm:truncate sm:text-3xl sm:tracking-tight"> {greeting} </h2> 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 />} |
