Front page

This commit is contained in:
2020-07-19 20:45:24 +02:00
parent a71a2a7a60
commit 29efa13410
23 changed files with 1099 additions and 93 deletions

40
src/App.scss Normal file
View File

@@ -0,0 +1,40 @@
@import "./Design.scss";
@import "./styles/TopBar.scss";
@import "./styles/SearchPanel.scss";
.App {
padding: 0;
margin: 0;
height: 100%;
background-color: $bg-color;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
}
.logo {
height: 5rem;
margin: 16px;
}
.footer {
width: 100%;
text-align: center;
}
p {
font-size: 14px;
font-weight: 300;
}
.darkParagraph {
color: $darker-color;
}
.main-container {
display: flex;
flex-direction: column;
justify-content: center;
text-align: center;
}