Customized layout
This commit is contained in:
parent
1dc82a81f5
commit
b506431136
15
src/App.css
15
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;
|
||||
}
|
||||
|
16
src/App.js
16
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 (
|
||||
<div className="App">
|
||||
<header className="App-header">
|
||||
<img src={logo} className="App-logo" alt="logo" />
|
||||
<p>
|
||||
Edit <code>src/App.js</code> and save to reload.
|
||||
</p>
|
||||
<a
|
||||
className="App-link"
|
||||
href="https://reactjs.org"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
>
|
||||
Learn React
|
||||
</a>
|
||||
</header>
|
||||
<main className="App-content">
|
||||
<Timer />
|
||||
</main>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user