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

Window popup #15

Merged
merged 7 commits into from
Apr 20, 2023
Merged

Window popup #15

merged 7 commits into from
Apr 20, 2023

Conversation

gisachris
Copy link
Owner

@gisachris gisachris commented Apr 20, 2023

IN This PR I have done the following πŸ‘¨β€πŸ’» :

-Refactor project section to load dynamically with javascript file (app.js) 🎑
-Add pop up modals for there corresponding projects πŸ₯‡
-add some styling to better fit figma design 🎨 and overall website functionality πŸ§‘β€πŸ”§

-implement the following actions πŸ’₯ :
When the user clicks (or taps) the button to check project details, the popup with details about the project appears.βœ…
When the user clicks (or taps) the close (X) button, the popup disappears. βœ…

I am looking forward to your comments on the work I have done so far 🌟 . thankyou πŸ™‡

Copy link

@Qoosim Qoosim left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Status: Required Changes ♻️

Hi @team,

Good job so far!
There are some issues that you still need to work on to go to the next project but you are almost there!

Highlights

  • No linter errors. βœ”οΈ
  • Good README file. βœ”οΈ
  • Correct GitHub Flow. βœ”οΈ

Required Changes ♻️

Check the comments under the review.

Optional suggestions

Every comment with the [OPTIONAL] prefix is not crucial enough to stop the approval of this PR. However, I strongly recommend you to take them into account as they can make your code better.

Cheers and Happy coding!πŸ‘πŸ‘πŸ‘

Feel free to leave any questions or comments in the PR thread if something is not 100% clear.
Please, remember to tag me in your question so I can receive the notification.

Please, do not open a new Pull Request for re-reviews. You should use the same Pull Request submitted for the first review, either valid or invalid unless it is requested otherwise.


As described in the Code reviews limits policy you have a limited number of reviews per project (check the exact number in your Dashboard). If you think that the code review was not fair, you can request a second opinion using this form.

styling.css Outdated
Comment on lines 859 to 1044
justify-content: space-between;
align-items: center;
width: 100%;
height: auto;
}

.modalImage {
margin-top: 20px;
margin-bottom: 20px;
width: 360px;
height: 214px;
}

.modalImageOther {
margin-top: 20px;
margin-bottom: 20px;
width: 360px;
height: 214px;
}

.restArticle {
width: 100%;
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
padding: 20px;
padding-top: 0px;
}

.modalDescription {
font-family: 'Inter', sans-serif;
font-weight: 900;
font-size: 1.188rem;
color: #091e42;
column-gap: 10px;
width: 360px;
height: fit-content;
padding-bottom: 10px;
}

.modalbuttonsholder {
width: 100%;
display: flex;
flex-direction: row;
justify-content: center;
column-gap: 60px;
margin-top: 10px;
}

.modalbutton1 {
background-color: #c46710;
width: 150px;
border: 0;
padding-top: 15px;
padding-bottom: 15px;
margin-left: 20px;
}

.modalbutton1:hover {
background-color: #ceb49d;
}

.modalbutton1:active {
background-color: #973a04;
}

.modalbutton1 > a {
color: white;
font-family: 'Inter', sans-serif;
display: flex;
column-gap: 10px;
justify-content: center;
}

.modalbutton2 {
background-color: #c46710;
width: 165px;
border: 0;
padding-top: 15px;
padding-bottom: 15px;
margin-right: 33px;
}

.modalbutton2:hover {
background-color: #ceb49d;
}

.modalbutton2:active {
background-color: #973a04;
}

.modalbutton2 > a {
width: fit-content;
color: white;
font-family: 'Inter', sans-serif;
display: flex;
column-gap: 10px;
justify-content: center;
}
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  • Great job so far. However, there're few things to work on before you move to the next milestone.
    • The window popup on the mobile version does not appear as we have it on the figma design.
    • The X icon to close the modal is not showing on the popup window.
    • The arrangement of the list of tools used to build the project are not properly layout as we have them on the figma design.
    • There's a small horizontal scroll bar at the bottom of the page.
      kindly attend to all these observations and fix them.

You Design

your-mobile-windo-popup

Screen Recording

app-behave.webm

Figma Design

temp-mobile-window-popup

Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

As per my previous CR πŸ” i was requested ♻️ to make some changes like :

-make better design for mobile view to fit figma design🎨
-Remove the horizontal scroll bar πŸ“œ to improve ux.

as per my last commit 🟒 to the pull request i have fixed πŸ§‘β€πŸ”§ all the issues above. πŸ…
I hope to hear from you my CR 🀺 soon!.

Copy link

@franclobo franclobo left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi @gisachris,

STATUS: APPROVED πŸ˜ƒ

git-merge

Your project is complete! There is nothing else to say other than... it's time to merge it :shipit:
Congratulations! πŸŽ‰

Highlights

  • No linter errors βœ”οΈ
  • Descriptive PR βœ”οΈ
  • Correct Github flow βœ”οΈ
  • Good UI ⭐ ⭐ ⭐

Optional suggestions

Every comment with the [OPTIONAL] prefix won't stop the approval of this PR. However, I strongly recommend you to take them into account as they can make your code better. Some of them were simply missed by the previous reviewer and addressing them will really improve your application.

Cheers and Happy coding!πŸ‘πŸ‘πŸ‘

Feel free to leave any questions or comments in the PR thread if something is not 100% clear.
Please, remember to tag me in your question so I can receive the notification.


As described in the Code reviews limits policy you have a limited number of reviews per project (check the exact number in your Dashboard). If you think that the code review was not fair, you can request a second opinion using this form.

@gisachris gisachris merged commit e7a9ef7 into master Apr 20, 2023
@gisachris gisachris deleted the window-popup branch June 18, 2023 16:14
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants