suryanshsingh2001 / MyLibrary

MyLibrary 📚 is a modern library management web app built with React.js, 🔐 Auth0 for authentication, 📖 Google Books API for book data, and styled with 🎨 Tailwind CSS for a delightful user experience.
https://mylibrary01.vercel.app/
MIT License
25 stars 25 forks source link

Feat : Added Search button #30

Closed Arbtrage closed 1 year ago

Arbtrage commented 1 year ago

Added materials UI for future component styling also

image

Please review @suryanshsingh2001 .

vercel[bot] commented 1 year ago

Someone is attempting to deploy a commit to a Personal Account owned by @suryanshsingh2001 on Vercel.

@suryanshsingh2001 first needs to authorize it.

vercel[bot] commented 1 year ago

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
mylibrary ✅ Ready (Inspect) Visit Preview 💬 Add feedback Oct 14, 2023 3:08pm
Arbtrage commented 1 year ago

Can you provide me with some details as to how should I style the seach bar ?

suryanshsingh2001 commented 1 year ago

Can you provide me with some details as to how should I style the seach bar ?

Sure, You can make changes in className to style the search bar. Also make sure to undo any changes you did for the button.

 const inputProps = {
    placeholder: "Search for books",
    value,
    onChange,
    className:
      "w-full px-4 py-2 rounded-lg border border-gray-300 focus:outline-none focus:border-blue-500",
  };
Arbtrage commented 1 year ago

Sure will do so.