stepper fix

master
Tudor Stanciu 2020-12-16 03:14:50 +02:00
parent 66721d451a
commit d6dde2e517
3 changed files with 5 additions and 5 deletions

View File

@ -1,9 +1,9 @@
.App {
text-align: center;
background-color: #282c34;
}
.App-header {
background-color: #282c34;
min-height: 100vh;
display: flex;
flex-direction: column;

View File

@ -6,9 +6,7 @@ function App() {
return (
<Suspense fallback={<div>Loading...</div>}>
<div className="App">
<header className="App-header">
<Main />
</header>
</div>
</Suspense>
);

View File

@ -6,7 +6,9 @@ const Main = () => {
return (
<>
<Stepper />
<header className="App-header">
<Switcher />
</header>
</>
);
};