-
Notifications
You must be signed in to change notification settings - Fork 2
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
Added light and dark mode. Update Navbar with search field and other … #11
base: main
Are you sure you want to change the base?
Conversation
@aina21 Could you please review this PR request? |
border-radius: 5px; | ||
text-align: center; | ||
font-size: 15px; | ||
width: 35%; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Using percentages for layout widths can lead to unpredictable behavior on different devices. Please be aware of this or consider using a more stable approach like flexbox.
@@ -1,6 +1,6 @@ | |||
import React from 'react'; | |||
import ReactDOM from 'react-dom/client'; | |||
import './index.css'; | |||
// import './index.css'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remove it
@@ -0,0 +1,50 @@ | |||
.submitTeam-container { | |||
display: flex; | |||
/* justify-content: center; */ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remove this
// import DeleteTeam from '../component/DeleteTeam'; | ||
|
||
const Home = () => { | ||
const Home = ({theme, setTheme}) => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You can remove the props, as they appear to be unused.
@@ -0,0 +1,95 @@ | |||
.navbar{ | |||
/* width: 100%; */ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remove it
…styling as well