Contribute page imporvements

This commit is contained in:
mrfry 2021-02-16 09:27:23 +01:00
parent e563e503c9
commit ca12511e6d
2 changed files with 20 additions and 17 deletions

View file

@ -84,29 +84,29 @@ export default function contribute() {
</a>
-n, és útbaigazítalak.
</div>
<Todos />
<div className={styles.description}>
Itt írhatsz új todo-ra ötleteket, vagy jelezhetsz hogy egyikben
segítenél
</div>
{renderNewTaskArea()}
<hr />
<Todos />
<Sleep />
<hr />
<div className={styles.title}>Git repos</div>
<hr />
<hr />
<div className={styles.repos}>
<ul>
{Object.keys(repos.repos).map((key) => {
let repo = repos.repos[key]
return (
<li key={key}>
<a href={repo.href}>{repo.description}</a>
</li>
<a key={key} href={repo.href}>
{repo.description}
</a>
)
})}
</ul>
<hr />
</div>
<div style={{ textAlign: 'center' }}>
<img
style={{ maxWidth: '100%', width: '400px' }}
@ -114,6 +114,5 @@ export default function contribute() {
/>
</div>
</div>
</div>
)
}

View file

@ -39,3 +39,7 @@
font-size: 30px;
text-align: center;
}
.repos a {
margin: 0px 5px;
}