Latest solutions
Latest comments
- @Teor99@jgorelik23
Привет братан!
One suggestion that I have for you is to center the QR code component not only vertically, but horizontally as well. This can be achieved by adding the following code to your CSS:
html, body { height: 100%; } body { justify-content: center; /* add this in addition to existing styles for the body */ }
Read more about flexbox: https://css-tricks.com/snippets/css/a-guide-to-flexbox/
Great work!
Marked as helpful - @Mharvel13@jgorelik23
Hey Marvel!
Here's some feedback:
- Something I would recommend looking into would be the CSS min() function, which (in some cases) can be used to replace media queries.
- Try replacing some of your divs with semantic HTML elements.
- Check out the accessibility issues shown in the report from Frontend Mentor.
Great work!
Learn more: https://developer.mozilla.org/en-US/docs/Web/CSS/min
Marked as helpful