aboutsummaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorDhravya <[email protected]>2024-05-26 00:03:05 -0500
committerDhravya <[email protected]>2024-05-26 00:03:05 -0500
commitf2c5bf0c9d725a071315596c5b6b96eb894fc6c0 (patch)
tree233d5ae12fb24bc50d6ab2c511c1869ddbab4711 /apps
parentbrought all the APIs back (diff)
downloadarchived-supermemory-f2c5bf0c9d725a071315596c5b6b96eb894fc6c0.tar.xz
archived-supermemory-f2c5bf0c9d725a071315596c5b6b96eb894fc6c0.zip
change input height
Diffstat (limited to 'apps')
-rw-r--r--apps/web/app/home/queryinput.tsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/web/app/home/queryinput.tsx b/apps/web/app/home/queryinput.tsx
index 41b2934f..4810ffd2 100644
--- a/apps/web/app/home/queryinput.tsx
+++ b/apps/web/app/home/queryinput.tsx
@@ -5,14 +5,14 @@ import Divider from "@repo/ui/src/shadcn/divider";
function QueryInput() {
return (
- <div className="bg-secondary h- [68px] rounded-[24px] w-full mt-40">
+ <div className="bg-secondary rounded-[24px] w-full mt-40">
{/* input and action button */}
<div className="flex gap-4 p-3">
<textarea
name="query-input"
cols={30}
- rows={7}
- className="bg-transparent pt-2.5 text-base text-[#989EA4] focus:text-foreground duration-200 tracking-[3%] outline-none resize-none w-full p-1"
+ rows={4}
+ className="bg-transparent pt-2.5 text-base text-[#989EA4] focus:text-foreground duration-200 tracking-[3%] outline-none resize-none w-full p-4"
placeholder="Ask your second brain..."
></textarea>