Skip to content

Commit

Permalink
change logo from react to DCL and format popup
Browse files Browse the repository at this point in the history
  • Loading branch information
fmiras committed Jun 18, 2018
1 parent b162a36 commit 47665ef
Show file tree
Hide file tree
Showing 5 changed files with 42 additions and 23 deletions.
7 changes: 1 addition & 6 deletions src/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

.App-header {
background-color: #222;
height: 150px;
height: 50px;
padding: 20px;
color: white;
}
Expand All @@ -21,8 +21,3 @@
.App-intro {
font-size: large;
}

@keyframes App-logo-spin {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}
11 changes: 5 additions & 6 deletions src/App.js
Original file line number Diff line number Diff line change
@@ -1,21 +1,20 @@
import React, { Component } from 'react';
import logo from './logo.svg';
import './App.css';
import React, { Component } from 'react'
import logo from './logo.svg'
import './App.css'

class App extends Component {
render() {
return (
<div className="App">
<header className="App-header">
<img src={logo} className="App-logo" alt="logo" />
<h1 className="App-title">Welcome to React</h1>
</header>
<p className="App-intro">
To get started, edit <code>src/App.js</code> and save to reload.
</p>
</div>
);
)
}
}

export default App;
export default App
1 change: 1 addition & 0 deletions src/index.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
body {
width: 150px;
margin: 0;
padding: 0;
font-family: sans-serif;
Expand Down
10 changes: 5 additions & 5 deletions src/index.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import React from "react";
import ReactDOM from "react-dom";
import React from 'react'
import ReactDOM from 'react-dom'

import App from "./App";
import App from './App'

import "./index.css";
import './index.css'

ReactDOM.render(<App />, document.getElementById("root"));
ReactDOM.render(<App />, document.getElementById('root'))
36 changes: 30 additions & 6 deletions src/logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 47665ef

Please sign in to comment.