Skip to content

Commit

Permalink
display logo
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanxcharles committed Feb 27, 2016
1 parent 8e67835 commit a1d9512
Show file tree
Hide file tree
Showing 4 changed files with 64 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Open+Sans">
<link rel="stylesheet" type="text/css" href="/bootstrap.css">
<link rel="stylesheet" type="text/css" href="/main.css">
<title>Datt</title>
<title>Yours</title>
</head>
<body>
<div id="container" class="container">
Expand Down
11 changes: 11 additions & 0 deletions build/main.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
.page-header {
text-align: center;
}

.page-header img {
width: 2.5em;
}

.page-header h1 {
font-size: 2em;
}
48 changes: 48 additions & 0 deletions build/yours-logo-white.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 4 additions & 2 deletions react/layout.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ let Layout = React.createClass({
this.setState({
dattcoreStatus: 'initialized'
})
this.monitorDattCore()
// this.monitorDattCore()
} catch (err) {
this.setState({
dattcoreStatus: 'error initializing: ' + err
Expand All @@ -42,11 +42,13 @@ let Layout = React.createClass({
render: function () {
let dattcore = this.props.dattcore
let dattcoreStatus = this.state.dattcoreStatus
let apptitle = this.props.apptitle
return (
<div className='container'>
<div className='row page-header'>
<div className='col-md-12'>
<h1>Yours</h1>
<img src="/yours-logo-white.svg" alt=""/>
<h1>{apptitle}</h1>
</div>
</div>

Expand Down

0 comments on commit a1d9512

Please sign in to comment.