mirror of
https://gitlab.com/MrFry/qmining-page
synced 2025-04-01 20:23:44 +02:00
Added data editor to repos tab, changed some descriptions
This commit is contained in:
parent
4776405aa8
commit
b4dc053e1f
7 changed files with 24 additions and 32 deletions
|
@ -1,15 +0,0 @@
|
|||
import styles from './ircButton.module.css'
|
||||
|
||||
export default function IrcButton (props) {
|
||||
return (
|
||||
<div>
|
||||
<center>
|
||||
<a href='/irc'>
|
||||
<div className={styles.ircLink}>
|
||||
IRC chat
|
||||
</div>
|
||||
</a>
|
||||
</center>
|
||||
</div>
|
||||
)
|
||||
}
|
|
@ -10,15 +10,16 @@ class Questions extends PureComponent {
|
|||
|
||||
return (
|
||||
<div>
|
||||
{subjs.map((subj) => {
|
||||
{subjs.map((subj, i) => {
|
||||
return (
|
||||
<div>
|
||||
<div key={i}>
|
||||
<div className={styles.subjName}>
|
||||
{subj.Name}
|
||||
</div>
|
||||
{ subj.Questions.map((question) => {
|
||||
{ subj.Questions.map((question, i) => {
|
||||
return (
|
||||
<Question
|
||||
key={i}
|
||||
question={question}
|
||||
/>
|
||||
)
|
||||
|
|
|
@ -1,10 +0,0 @@
|
|||
.ircLink {
|
||||
background-color: #9999ff;
|
||||
border: none;
|
||||
color: white;
|
||||
padding: 15px 32px;
|
||||
text-align: center;
|
||||
text-decoration: none;
|
||||
display: inline-block;
|
||||
font-size: 16px;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue