diff --git a/vibn-frontend/components/project/table-viewer.tsx b/vibn-frontend/components/project/table-viewer.tsx index a1866ce6..75d79e1e 100644 --- a/vibn-frontend/components/project/table-viewer.tsx +++ b/vibn-frontend/components/project/table-viewer.tsx @@ -106,14 +106,6 @@ export function TableViewer({ projectId, dbUuid, schema, table }: Props) { return (
-
- Showing {data.rows.length} row{data.rows.length === 1 ? "" : "s"} - {data.truncated && " (truncated to first 50)"} · {data.columns.length}{" "} - column{data.columns.length === 1 ? "" : "s"} ·{" "} - - {schema}.{table} - -
@@ -138,6 +130,14 @@ export function TableViewer({ projectId, dbUuid, schema, table }: Props) {
+
+ Showing {data.rows.length} row{data.rows.length === 1 ? "" : "s"} + {data.truncated && " (truncated to first 50)"} · {data.columns.length}{" "} + column{data.columns.length === 1 ? "" : "s"} ·{" "} + + {schema}.{table} + +
); } @@ -160,8 +160,11 @@ const wrap: React.CSSProperties = { flex: 1, }; const meta: React.CSSProperties = { - fontSize: "0.74rem", + fontSize: "0.75rem", color: INK.mid, + display: "flex", + justifyContent: "space-between", + padding: "4px 8px", }; const qual: React.CSSProperties = { fontFamily: "ui-monospace, SFMono-Regular, Menlo, monospace",