1
0
mirror of https://github.com/mgerb/go-discord-bot synced 2026-01-11 17:42:48 +00:00

fixed padding overflow

This commit is contained in:
2017-02-04 04:47:37 +00:00
parent 434d339333
commit 00f0ae294c
7 changed files with 20 additions and 19 deletions

View File

@@ -5,16 +5,18 @@ export default class Home extends React.Component {
render() {
return (
<div className="Card">
<div className="Card__header">
GoBot Early Access Pre Pre Alpha
</div>
<p>This application is a work in progress.</p>
<p>Check out the source code on
<a href="https://github.com/mgerb/GoBot" target="_blank"> GitHub
<i className="fa fa-github" aria-hidden="true"></i>
</a>
</p>
<div className="Home">
<div className="Card">
<div className="Card__header">
GoBot Early Access Pre Pre Alpha
</div>
<p>This application is a work in progress.</p>
<p>Check out the source code on
<a href="https://github.com/mgerb/GoBot" target="_blank"> GitHub
<i className="fa fa-github" aria-hidden="true"></i>
</a>
</p>
</div>
</div>
);
}

View File

@@ -1 +1,5 @@
@import "../../scss/variables";
.Home {
padding: 10px;
}