- Ask your{" "}
-
- supermemory
-
+
+ Ask your{" "}
+
+ supermemory
+
+
@@ -108,7 +115,9 @@ function Page({ searchParams }: { searchParams: Record }) {
initialSpaces={spaces}
/>
-
+
+
+
diff --git a/apps/web/app/(dash)/home/queryinput.tsx b/apps/web/app/(dash)/home/queryinput.tsx
index 82561438..995fea53 100644
--- a/apps/web/app/(dash)/home/queryinput.tsx
+++ b/apps/web/app/(dash)/home/queryinput.tsx
@@ -52,7 +52,7 @@ function QueryInput({
name="q"
cols={30}
rows={3}
- className="bg-transparent text-lg placeholder:text-[#9B9B9B] text-gray-200 tracking-[3%] outline-none resize-none w-full p-7"
+ className={`bg-transparent text-lg placeholder:text-[#9B9B9B] text-gray-200 tracking-[3%] outline-none resize-none w-full py-4 px-4 h-32 transition-[height] ${query.length > 0 && "h-40"}`}
placeholder="Ask your second brain..."
onKeyDown={(e) => {
if (e.key === "Enter" && !e.shiftKey) {
@@ -74,8 +74,8 @@ function QueryInput({
initialSpaces={initialSpaces || []}
/>
-
-