somayakhaled
@somayakhaledAll comments
- @jasper2virtualSubmitted 12 days ago@somayakhaledPosted 10 days ago
Hi,
I hope you're doing well! I wanted to take a moment to provide some feedback on your solution.
First off, great job on implementing the design! I really appreciate the effort you put into creating an engaging user experience. However, I did notice something regarding the responsiveness of the layout.
My screen width is 1366px, when I opened the website (your solution), and instead of seeing the desktop design, I was presented with the mobile design. To view the desktop version, I had to use the device toolbar and set it to 1440px. It might be helpful to check the media queries and ensure that your layout transitions correctly between the mobile and desktop views at different breakpoints.
Overall, your project looks fantastic, and it’s clear you’ve put in a lot of work. I believe refining the responsiveness will further enhance the user experience. Keep up the great work, and I’m excited to see what you create next!
Best regards.
0 - @SergioCasCebSubmitted 16 days agoWhat are you most proud of, and what would you do differently next time?
Nothing in specific. It was a quick fun challenge. I proud that I tried to focus on future maintenance and flexibility by having a structure and functionality in a way that if more inputs are added it could still work with minimal changes.
What challenges did you encounter, and how did you overcome them?Nothing in specific.
What specific areas of your project would you like help with?Nothing in specific. But feedback is always welcome. :D
@somayakhaledPosted 10 days agoHi, I hope this message finds you well. I wanted to provide some feedback regarding the button hover effect on the website. I noticed that the implementation does not align with the design we discussed. Here’s the code that shows the hover effect I was expecting:
button { background-color: $Dark_Slate_Grey; &::after { content: ''; background: linear-gradient(to right, $pink, $Tomato); position: absolute; left: 0; right: 0; bottom: -.5rem; height: 12px; filter: blur(1rem); opacity: 0; } &:hover { cursor: pointer; background: linear-gradient(to right, $pink, $Tomato); &::after { opacity: 1; } } }
Consistency in design is important for user experience, and I thought it would be helpful to bring this to your attention.
Thank you for your hard work!
Best regards.
0 - @Devs-advocateSubmitted about 2 months agoWhat are you most proud of, and what would you do differently next time?
Used SCSS for the first time in a small project and thought it worked well. It gives that extra bit of organization to a CSS file that can become a little overwhelming.
What challenges did you encounter, and how did you overcome them?It took some time to manage and manipulate the SVG images. Read some helpful tips on FEM's Discord from Grace Snow. Thanks btw. The differing layouts of the desktop and mobile versions made it trickier to make the html design. In the end I had to change an element from being flex item to just having absolute positioning.
What specific areas of your project would you like help with?I had trouble working out whether to use an image directly or as a background in a div element. It's literally the first thing to configure. I got stuck because I was looking into the pros and cons of which approach to take. I'm still not 100% on when to use which, and why. I wanted to decide based on responsiveness and alignment of the image.