diff --git a/src/App.css b/src/App.css index 74b5e05..23edc14 100644 --- a/src/App.css +++ b/src/App.css @@ -3,7 +3,7 @@ } .App-logo { - height: 40vmin; + height: 60px; pointer-events: none; } @@ -15,7 +15,7 @@ .App-header { background-color: #282c34; - min-height: 100vh; + min-height: 60px; display: flex; flex-direction: column; align-items: center; @@ -24,6 +24,17 @@ color: white; } +.App-content { + background-color: #373b43; + min-height: calc(100vmin - 60px); + display: flex; + flex-direction: row; + align-items: center; + justify-content: center; + font-size: calc(10px + 2vmin); + color: white; +} + .App-link { color: #61dafb; } diff --git a/src/App.js b/src/App.js index 3784575..ab6e762 100644 --- a/src/App.js +++ b/src/App.js @@ -1,23 +1,17 @@ import logo from './logo.svg'; import './App.css'; +import Timer from './Timer'; +import './Timer.css'; function App() { return (
logo -

- Edit src/App.js and save to reload. -

- - Learn React -
+
+ +
); }