-
Notifications
You must be signed in to change notification settings - Fork 152
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
UI/task details page #726
UI/task details page #726
Conversation
@ankitbajpai65 is attempting to deploy a commit to the RDS-Team Team on Vercel. A member of the Team first needs to authorize it. |
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.
Please run lint-fix and prettier
Hey @vinit717, I made the above mentioned changes. You can now check the changes |
package.json
Outdated
"build": "next build", | ||
"start": "next start -p $PORT", | ||
"test": "jest --coverage", | ||
"test-watch": "jest --watch ", | ||
"lint": "next lint", | ||
"lint-fix": "eslint . --fix --ext js,jsx,ts,tsx", |
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.
Why you remove this ?
@media (max-width: 450px) { | ||
.wrapper { | ||
margin: 0 10px; | ||
} | ||
} | ||
|
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.
Put media query always at the bottom of the file
src/components/taskDetails/index.tsx
Outdated
@@ -58,7 +58,7 @@ const TaskDetails: FC<Props> = ({ taskID }) => { | |||
|
|||
const { data: userData, isUserAuthorized } = useUserData(); | |||
|
|||
const [isEditing, setIsEditing] = useState<boolean>(false); | |||
const [isEditing, setIsEditing] = useState<boolean>(true); |
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.
Why you changed this
Hey @vinit717, can you check again. Thanks |
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.
Why there is a need to change package json it is just a simple CSS change
@media (max-width: 970px) { | ||
.navBar { | ||
display: flex; | ||
flex-direction: row; | ||
flex-wrap: wrap; | ||
position: relative; |
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.
Please place this media query at the bottom of the file
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.
It is at the bottom, please check
@vinit717, Please check again. Thanks. |
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 have to add only CSS file changes until there is no Class name is added
This pull request work is done in this #779. |
Description
Fixed CSS of the task details page and made it responsive for mobile.
Issue
#685 (comment)
Images/video of the change:
website-status.mp4