1
0
mirror of https://github.com/mgerb/go-discord-bot synced 2026-01-10 09:02:49 +00:00

Merge pull request #5 from mgerb/mitchell

fixed padding overflow
This commit is contained in:
2017-02-03 22:48:05 -06:00
committed by GitHub
7 changed files with 20 additions and 19 deletions

3
.gitignore vendored
View File

@@ -1,5 +1,4 @@
config.json config.json
dist/config.json dist/config.json
node_modules node_modules
yarn-error* yarn-error*
dist

View File

@@ -8,7 +8,7 @@ export default class Wrapper extends React.Component {
render() { render() {
return ( return (
<div className="Content"> <div>
<Navbar/> <Navbar/>
<div> <div>
{this.props.children} {this.props.children}

View File

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

View File

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

View File

@@ -23,10 +23,6 @@ body {
padding-left: $navbarWidth; padding-left: $navbarWidth;
} }
.Content {
padding: 10px;
}
.Card { .Card {
background-color: $gray2; background-color: $gray2;
border-radius: 5px; border-radius: 5px;

2
dist/static/app.css vendored

File diff suppressed because one or more lines are too long

2
dist/static/app.js vendored

File diff suppressed because one or more lines are too long