Latest solutions
Latest comments
- @Awizp@nelsonuprety1
The zoro touchup you gave is amazing. Congrats for completing the challenge Nakama.
Kaizoku oni orewa naru
- @PastoreMartina@nelsonuprety1
Hello, pastore martina congrats for completing the challenge. As you have mentioned about attribution not going to the bottom, I have explained and added code to fix the problem of attribution not going to the bottom of the page. So please check your github code file and merge the changes if you like it.
Thank you
- @forjoa@nelsonuprety1
Hello Joaquin, I used
background: linear-gradient(hsl(277, 64%, 61%, 0.5), hsl(277, 64%, 61%, 0.5)), url('/images/image-header-mobile.jpg');
to achieve the desired purple filter . I used linear gradient with the color that has been provided in the style guide file.
Marked as helpful - @Camoscript@nelsonuprety1
Hello tobi, nice work on the project. I would like to share some of my insights regarding the code.
You can use the flex-direction property to set how flex items are placed in the flex container. Check this link: https://developer.mozilla.org/en-US/docs/Web/CSS/flex-direction
And you can use
justify-content: center; align-items: center;
to center your content And please try to reduce the size of the whole container by adjusting its width and height.I hope this helps.
Marked as helpful - @marijadjo@nelsonuprety1
Looks good and clean. One thing I would like to suggest is to check out async await with fetch API. Here are some of the links you can use:
https://developer.mozilla.org/en-US/docs/Learn/JavaScript/Asynchronous https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/async_function
Happy coding.
Marked as helpful - @eneyedev@nelsonuprety1
The app looks good. But please consider using Javascript to load the api and display the api data when you click the dice as mentioned in the project description.
You can use the fetch API method with async await to call the api. Fetch api: https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API/Using_Fetch
Async / await: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/async_function
Please briefly go through the topic of asynchronous javascript to learn more about the topic. Link: https://developer.mozilla.org/en-US/docs/Learn/JavaScript/Asynchronous
Marked as helpful