mirror of
https://gitlab.com/MrFry/qmining-page
synced 2025-04-01 20:23:44 +02:00
Contribute page styling
This commit is contained in:
@@ -10,9 +10,9 @@ export default function Helps () {
|
|||||||
<table className={styles.helpTable}>
|
<table className={styles.helpTable}>
|
||||||
<thead>
|
<thead>
|
||||||
<tr className={styles.helpHeader}>
|
<tr className={styles.helpHeader}>
|
||||||
{header.map((h) => {
|
{header.map((h, i) => {
|
||||||
return (
|
return (
|
||||||
<td>
|
<td key={i}>
|
||||||
{h}
|
{h}
|
||||||
</td>
|
</td>
|
||||||
)
|
)
|
||||||
@@ -20,10 +20,10 @@ export default function Helps () {
|
|||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
{Object.keys(helpRows).map((key) => {
|
{Object.keys(helpRows).map((key, i) => {
|
||||||
const item = helpRows[key]
|
const item = helpRows[key]
|
||||||
return (
|
return (
|
||||||
<tr className={styles.helpRow}>
|
<tr className={styles.helpRow} key={i}>
|
||||||
<td>
|
<td>
|
||||||
{item.name}
|
{item.name}
|
||||||
</td>
|
</td>
|
||||||
|
@@ -17,6 +17,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.helpRow td {
|
.helpRow td {
|
||||||
|
padding: 10px;
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user