Latest comments
- @jordan369639@dreamspice
Git add, Git commit, Git push
Only this. And generator new report on this site.
- @jordan369639@dreamspice
Nice !
How do u implement functionality: ex. type 'pol' and country starts with 'pol' render without submit form? I need to check your code.
U can filter countries from A-Z, with filter method:
state.data.sort(function (x, y) { let a = x.name.toUpperCase(), b = y.name.toUpperCase(); return a === b ? 0 : a > b ? 1 : -1; });
Also add alt attribute to all flag images, close everything in semantic elements, ex. <header></header>, <main></main>, and add aria-labelledby, aria-label and label for select el.
Marked as helpful - @Vitor-HenriqueAS@dreamspice
U can easily change svg color in Figma. Nice work, code looks good :)
- @dreamspice@dreamspice
Hi, thank you for reply.
Mmmm...
U use this div because i can't add white padding for text but i can do it now.
Ok, then this <h1>We are creative</h1> item should be outside this div?
<header> <h1>...</h1> </header>not
<header> <div class="header-text> <h1>..</h1> </div> </header> - @dreamspice@dreamspice
I will check it later. Thank you.
Font's for <p>, <a> doesn't work because i forgot to import font-weight: 400, in style guide i found only 600 / 700, 900.
- @maksat07@dreamspice
Hi, nice work.
Desktop version is nice.
I see some accesibility issues (img alt=""), heading and with semantic tag. Use <nav> tag instead of <div class="nav">.
For mobile version try set min-height for a few containers.
All the best :)
Marked as helpful