Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions ui/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,9 @@
.ps {
@import "tailwindcss/preflight.css";
}
body {
@apply bg-black!;
}
}

[data-radix-popper-content-wrapper] {
Expand Down
40 changes: 21 additions & 19 deletions ui/studio/Studio.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -165,25 +165,27 @@ function StudioContent() {
)}
</AnimatePresence>

<motion.div
className="flex h-full min-h-0 min-w-0 flex-1 flex-col self-stretch overflow-hidden rounded-lg bg-secondary p-px"
data-testid="studio-main-pane"
transition={{ duration: 0.14 }}
>
{shouldShowStartupIntrospectionRecovery ? (
<StartupIntrospectionRecoveryView
errorState={errorState}
isRetrying={isRefetching}
onRetry={() => void refetch()}
/>
) : shouldShowDatabaseUnavailableView ? (
<DatabaseUnavailableView
hasStreamsServer={typeof streamsUrl === "string"}
/>
) : (
<View />
)}
</motion.div>
<div className="p-3 flex h-full min-h-0 min-w-0 flex-1 flex-col self-stretch overflow-hidden rounded-xl text-card-foreground">
<motion.div
className="flex h-full flex-col self-stretch overflow-hidden border border-table-border rounded-xl"
data-testid="studio-main-pane"
transition={{ duration: 0.14 }}
>
{shouldShowStartupIntrospectionRecovery ? (
<StartupIntrospectionRecoveryView
errorState={errorState}
isRetrying={isRefetching}
onRetry={() => void refetch()}
/>
) : shouldShowDatabaseUnavailableView ? (
<DatabaseUnavailableView
hasStreamsServer={typeof streamsUrl === "string"}
/>
) : (
<View />
)}
</motion.div>
</div>
</div>
</div>
</StudioCommandPaletteProvider>
Expand Down
4 changes: 2 additions & 2 deletions ui/studio/grid/DataGridPagination.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -121,8 +121,8 @@ export function DataGridPagination(props: DataGridPaginationProps) {
}

return (
<div className="rounded-b-lg overflow-visible sticky bottom-0 left-0 border-t-0 w-full z-20 p-0">
<div className="flex items-center justify-between gap-2 py-3 px-2 border-t border-table-border backdrop-blur-sm bg-background/90">
<div className="rounded-b-xl overflow-visible sticky bottom-0 left-0 border-t-0 w-full z-20 p-0">
<div className="rounded-b-xl flex items-center justify-between gap-2 py-3 px-2 border-t border-table-border backdrop-blur-sm bg-background/90">
{variant === "basic" ? (
<div className="flex items-center gap-2">
<Button
Expand Down
2 changes: 1 addition & 1 deletion ui/studio/views/stream/StreamView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1849,7 +1849,7 @@ function ActiveStreamView(props: {
</div>

<div
className="border-t border-table-border bg-background/90 px-2 py-3 backdrop-blur-sm"
className="border-t rounded-b-xl border-table-border bg-background/90 px-2 py-3 backdrop-blur-sm"
data-testid="stream-footer"
>
<div className="flex flex-wrap items-center justify-start gap-2">
Expand Down