From 93f7d3ebebff28c50d9ac0d14d7f1c62fd152de3 Mon Sep 17 00:00:00 2001 From: Alan Dao Date: Fri, 22 Mar 2024 00:29:12 -0700 Subject: [PATCH] Fix page height on mobile devices Was geting frustrated that I'd have to manually scroll down to see the chat input on my phone... This should fix it! --- frontend/index.html | 2 +- frontend/package-lock.json | 10 +++++----- frontend/src/App.tsx | 4 ++-- frontend/src/components/ChatListDrawer.tsx | 2 +- frontend/src/pages/NotFound.tsx | 2 +- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/frontend/index.html b/frontend/index.html index 2c53b0a3b..b679b99e9 100644 --- a/frontend/index.html +++ b/frontend/index.html @@ -8,7 +8,7 @@ rel="stylesheet" /> - +
diff --git a/frontend/package-lock.json b/frontend/package-lock.json index 36773fea8..d1cc0d612 100644 --- a/frontend/package-lock.json +++ b/frontend/package-lock.json @@ -18936,9 +18936,9 @@ } }, "node_modules/tailwindcss": { - "version": "3.3.3", - "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.3.3.tgz", - "integrity": "sha512-A0KgSkef7eE4Mf+nKJ83i75TMyq8HqY3qmFIJSWy8bNt0v1lG7jUcpGpoTFxAwYcWOphcTBLPPJg+bDfhDf52w==", + "version": "3.4.1", + "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.4.1.tgz", + "integrity": "sha512-qAYmXRfk3ENzuPBakNK0SRrUDipP8NQnEY6772uDhflcQz5EhRdD7JNZxyrFHVQNCwULPBn6FNPp9brpO7ctcA==", "dev": true, "dependencies": { "@alloc/quick-lru": "^5.2.0", @@ -18946,10 +18946,10 @@ "chokidar": "^3.5.3", "didyoumean": "^1.2.2", "dlv": "^1.1.3", - "fast-glob": "^3.2.12", + "fast-glob": "^3.3.0", "glob-parent": "^6.0.2", "is-glob": "^4.0.3", - "jiti": "^1.18.2", + "jiti": "^1.19.1", "lilconfig": "^2.1.0", "micromatch": "^4.0.5", "normalize-path": "^3.0.0", diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx index 5b90cdce9..5dca549fb 100644 --- a/frontend/src/App.tsx +++ b/frontend/src/App.tsx @@ -57,14 +57,14 @@ const App: React.FC = () => { ), }}> {({ signOut }) => ( -
+
{ signOut ? signOut() : null; }} /> -
+
diff --git a/frontend/src/pages/NotFound.tsx b/frontend/src/pages/NotFound.tsx index 08f85686a..4e3a877db 100644 --- a/frontend/src/pages/NotFound.tsx +++ b/frontend/src/pages/NotFound.tsx @@ -5,7 +5,7 @@ import { PiSmileyXEyesFill } from 'react-icons/pi'; const NotFound: React.FC = () => { const { t } = useTranslation(); return ( -
+
404 ERROR