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

styling changes - added font-awesome

This commit is contained in:
2017-02-04 04:03:49 +00:00
parent 8b24e8fe31
commit 946fdd1e80
21 changed files with 5136 additions and 34 deletions

View File

@@ -5,9 +5,17 @@ export default class Home extends React.Component {
render() {
return (
<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>
);
}
}

View File

@@ -1,7 +1 @@
.Home {
display: flex;
height: 100%;
align-items: center;
justify-content: center;
font-size: 25px;
}
@import "../../scss/variables";

View File

@@ -26,10 +26,12 @@
padding: 20px;
color: lighten($gray1, 15%);
border-radius: 1em;
width: 200px;
height: 200px;
width: 300px;
height: 300px;
background-color: $gray2;
transition: background-color 0.1s linear;
}
.Dropzone--active {
background-color: lighten($gray1, 20%);
background-color: $primaryBlue;
}