Pod request access landing page using JS and mobile-first workflow

Solution retrospective
Hi! This is my second project using simple JS - please let me know what you think. First time working using mobile-first workflow.
Cheers!
Please log in to post a comment
Log in with GitHubCommunity feedback
- @GrzywN
Great job @Soltysnowicki!
I would suggest you to put max-widths for your content, so your design will be more responsive/dynamic for small widths. It can be done in two ways e.g.
.simple-way { width: 100%; max-width: 10rem; } .more-modern-way { width: min(100%, 10rem); }
You can use it almost everywhere - text, headings, buttons, inputs etc. Also, to make your solution match the design better, you can use tools like DiffChecker or PerfectPixel extension for Chrome. Also don't forget to make use of your Figma files and widths by pressing
Alt
button on your keyboard.Hope this helps! Have a nice day and keep coding 😄!
Join 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