mirror of
https://gitlab.com/MrFry/qmining-page
synced 2025-04-01 20:23:44 +02:00
IRC button module, removed some links
This commit is contained in:
parent
647ca26892
commit
833b641578
6 changed files with 36 additions and 38 deletions
15
src/components/IrcButton.js
Normal file
15
src/components/IrcButton.js
Normal file
|
@ -0,0 +1,15 @@
|
|||
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
src/components/ircButton.module.css
Normal file
10
src/components/ircButton.module.css
Normal file
|
@ -0,0 +1,10 @@
|
|||
.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