My first mobile first workflow solution ^^
Design comparison
Solution retrospective
Hi. This is my first solution using mobile first workflow and was happy with it^
At first, I was thinking a lot on how to properly make the desktop design since I will start mobile, but as soon as I create the first section and transition it to desktop design, I found it relatively easy and was happy about it. From now on, starting always in mobile first so ba-bye desktop first :(
If there are any issue and recommendation, would be really glad to hear it^^
Community feedback
- @ApplePieGiraffePosted over 3 years ago
Hello, Raymart Pamplona! π
It's nice to see you complete another challenge! π Great job on this one! π Your solution looks good and responds well and I like the extra toast notification that gets displayed when the user submits an email! π
Also, kudos for trying out a mobile-first approachβonce you're used to it, it definitely makes things easier at times when it comes to responsive design. π
The only thing I might suggest is to add a max-width to some of the sections on the page so that they don't become too wide and so that the content inside them doesn't drift apart a bit on extra-large desktop screens. I usually like to create a wrapper
div
with a class called something likecontent-wrapper
that I use to wrap the content of all of the sections of a site. It's CSS is usually something simple like,max-width: 1110px; margin: 0 auto
. Just a tip! πAlso, you might want to give the toast notification a higher z-index since it's gets hidden behind the input element at the top of the page at certain points when you scroll.
Of course, keep coding (and happy coding, too)! π
Marked as helpful1@pikapikamartPosted over 3 years ago@ApplePieGiraffe Thanks APG!! I pushed out the update first before replying^
Yes, that max-width is really necessary here, I always have that in my desktop first workflow but I forgot that here, in my first, mobile first (well, time to go back to desktop workflow, jk).
Also I thought that notification will override things since it is
position: fixed
but not, hmm.. So really thank you for spotting that one!! Thanks again APG!1@ApplePieGiraffePosted over 3 years ago@pikamart
Awesome! π The added
max-width
does look better, now! π Glad to help! π0
Please log in to post a comment
Log in with GitHubJoin our Discord community
Join thousands of Frontend Mentor community members taking the challenges, sharing resources, helping each other, and chatting about all things front-end!
Join our Discord