diff --git a/src/App.css b/src/App.css deleted file mode 100755 index c84d958..0000000 --- a/src/App.css +++ /dev/null @@ -1,7 +0,0 @@ -body { - background-color: pink; -} - -.App { - text-align: center; -} diff --git a/src/App.scss b/src/App.scss new file mode 100644 index 0000000..ab3fb24 --- /dev/null +++ b/src/App.scss @@ -0,0 +1,4 @@ +body { + background-color: #4a4a4a; + font-size: 160% +} diff --git a/src/App.tsx b/src/App.tsx index beb7e21..654fa0e 100755 --- a/src/App.tsx +++ b/src/App.tsx @@ -2,7 +2,7 @@ import React, { Component } from 'react'; import Header from './components/Header/Header'; -import './App.css'; +import './App.scss'; class App extends Component { public render() { diff --git a/src/components/Header/Header.scss b/src/components/Header/Header.scss index ac52886..0e7f4b2 100644 --- a/src/components/Header/Header.scss +++ b/src/components/Header/Header.scss @@ -1,10 +1,7 @@ .App-header { + text-align: center; background-color: #282c34; - min-height: 100px; - display: flex; - flex-direction: column; - align-items: center; - justify-content: center; - font-size: calc(10px + 2vmin); + font-size: 1.6em; + padding: 0.5em 0; color: white; }