Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Theme added and login input fixes #50

Merged
merged 8 commits into from
Apr 5, 2024
Merged
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
48 changes: 42 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion src/App.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {Navbar} from "./components/navbar";
import { Navbar } from "./components/navbar";
import { Route, Routes } from "react-router-dom";
import LoginPage from "./molecules/login-mobile-aadhar-page";
import { Toaster } from "react-hot-toast";
Expand All @@ -13,6 +13,7 @@ import FAQPage from "./pages/faq-page";
import LaunchPage from "./pages/launch-page";
import HomePage from "./pages/home-page";
import FeedbackPage from "./molecules/FeedbackPage";
import ShareButtons from "./molecules/share-buttons";
import { ChatUI } from "./molecules/chat-ui";


Expand Down Expand Up @@ -40,6 +41,7 @@ function App() {
<Route path="/faq-page" element={<FAQPage />} />
<Route path="/feedback-page" element={<FeedbackPage />}/>
<Route path="/launch-page" element={<LaunchPage />} />
<Route path="/share-buttons" element={<ShareButtons />} />
<Route path="/chat-ui" element={<ChatUI />} />

<Route path="/molecules" element={<Components />}/>
Expand Down
1 change: 0 additions & 1 deletion src/molecules/FeedbackPage/index.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@
}

.textBlock {
border: 2px solid #f5952e;
resize: vertical;
overflow: auto;
height: 10rem;
Expand Down
Loading
Loading