README updates and minor tweaks

This commit is contained in:
Kyle Corbitt
2023-06-28 11:55:25 -07:00
parent 15e4fe7e5a
commit 74d2493a1b
5 changed files with 33 additions and 35 deletions

View File

@@ -64,7 +64,7 @@ export default function Experiment() {
if (!experiment.isLoading && !experiment.data) {
return (
<AppShell title="Experiment not found">
<Center h="100vh">
<Center h="100%">
<div>Experiment not found 😕</div>
</Center>
</AppShell>
@@ -73,7 +73,7 @@ export default function Experiment() {
return (
<AppShell title={experiment.data?.label}>
<Box minH="100vh" mb={50}>
<Box minH="100%" pb={50}>
<HStack px={4} py={2}>
<Breadcrumb flex={1}>
<BreadcrumbItem>

View File

@@ -4,7 +4,7 @@ import AppShell from "~/components/nav/AppShell";
export default function Home() {
return (
<AppShell>
<Center h="100vh">
<Center h="100%">
<div>Select an experiment from the sidebar to get started!</div>
</Center>
</AppShell>