mirror of
https://gitlab.com/MrFry/qmining-page
synced 2025-04-01 20:23:44 +02:00
Rework of page "contribute.js/todos.js" (part2), finishing up style changes across pages, minor fixes
This commit is contained in:
parent
a91fa4a7fe
commit
88dd1f0cc6
17 changed files with 126 additions and 92 deletions
|
@ -14,7 +14,7 @@ export default function contribute() {
|
|||
const [showFeedback, setShowFeedback] = useState(false)
|
||||
|
||||
return (
|
||||
<div>
|
||||
<div className={'endofpage'}>
|
||||
<Head>
|
||||
<title>Todos - Qmining | Frylabs.net</title>
|
||||
</Head>
|
||||
|
@ -29,8 +29,8 @@ export default function contribute() {
|
|||
</p>
|
||||
<p>
|
||||
Emellet ha hozzáértő vagy, adott feladatok megvalósításában is
|
||||
segíthetsz. (lásd: lentebb)
|
||||
<br /> Ha egy kártyára kattintasz, a megjelenő abalkban láthatod annak
|
||||
segíthetsz. (lásd: <a href="#gitrepo">lentebb</a>)
|
||||
<br /> Ha egy kártyára kattintasz, a megjelenő ablakban láthatod annak
|
||||
részleteit, illetve{' '}
|
||||
<b>
|
||||
<i>szavazhatsz</i>
|
||||
|
@ -54,29 +54,39 @@ export default function contribute() {
|
|||
</div>
|
||||
</div>
|
||||
</center>
|
||||
<br />
|
||||
<hr />
|
||||
<Todos />
|
||||
<hr />
|
||||
<div className={styles.title}>Git repos</div>
|
||||
<hr />
|
||||
<hr />
|
||||
<div className={styles.repos}>
|
||||
<div className={'subtitle'}>
|
||||
<b>Git repos</b>
|
||||
</div>
|
||||
<div className={styles.repos} style={{ float: 'left' }} id={'gitrepo'}>
|
||||
{Object.keys(repos.repos).map((key) => {
|
||||
let repo = repos.repos[key]
|
||||
return (
|
||||
<a key={key} href={repo.href}>
|
||||
{repo.description}
|
||||
</a>
|
||||
<div>
|
||||
<ul>
|
||||
<li>
|
||||
<a key={key} href={repo.href}>
|
||||
{repo.description}
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
)
|
||||
})}
|
||||
<hr />
|
||||
</div>
|
||||
<div style={{ textAlign: 'center' }}>
|
||||
<div
|
||||
style={{ float: 'left' }}
|
||||
style={{ textAlign: 'right', marginRight: '100px', marginTop: '25px' }}
|
||||
>
|
||||
<img
|
||||
style={{ maxWidth: '100%', width: '400px' }}
|
||||
style={{ maxWidth: '100%', width: '320px' }}
|
||||
src={`${constants.siteUrl}img/bug.png`}
|
||||
/>
|
||||
</div>
|
||||
<hr />
|
||||
{showFeedback && (
|
||||
<Modal
|
||||
closeClick={() => {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue