Latest solutions
Latest comments
- P@lumiuko#accessibility#react#tailwind-css#vite#typescript@vovka8101
Hi, congratulations on completing this challenge! I noticed a little bug with your menu... When I open menu and then click on "Get Scooting" button I couldn't close menu after that. Check it out
Marked as helpful - @sukanyagurav@vovka8101
Wow, I like the idea of using a video for your hero. It looks amazing!
Marked as helpful - @ArdaBozan@vovka8101
Hi! There are a lot of free box shadow generators on Internet. And for your background you have mobile and desktop images, so just add @media in your css to switch them:
@media (orientation: portrait) { background-image: url(url-to-mobile.svg) }
Hope this will help you
Marked as helpful - @zetmosoma10@vovka8101
Hi, Congratulations on completing this challenge! Try to use position fixed instead of absolute for your menu
- @sukanyagurav@vovka8101
Wow, looks great! The only thing I would add here is a padding to container div element, because now it attaches to the edges on a mobile screen size...
Marked as helpful - @petritnuredini@vovka8101
Hi, congratulations on completing this challenge! But I noticed a little bug which is associated with JavaScript... For example if I want to calculate 2.3 - 1, I'll get 1.2999999... instead of 1.3. So, to fix that problem you can use: parseFloat(result.toFixed(4)). By using this approach you'll get numbers with maximum of 4 decimal places. Now 2.3 - 1 = 1.3; 2.333 - 1 = 1.333.