home screen changes (info button, appstore and google play buttons)

This commit is contained in:
2020-10-21 19:54:51 +02:00
parent e488827335
commit f5f758dbdc
11 changed files with 208 additions and 68 deletions

36
src/styles/Home.scss Normal file
View File

@@ -0,0 +1,36 @@
.hs {
height: 100%;
display: flex;
flex-flow: column;
justify-content: space-around;
align-items: center;
}
.hs-top {
display: flex;
cursor: pointer;
width: fit-content;
justify-content: center;
background-color: rgba(0, 0, 0, 0.315);
color: rgb(184, 184, 184);
border-radius: 8px;
h5 {
font-weight: 500;
margin-left: 18px;
}
transition: background-color 0.2s;
}
.hs-top:hover {
background-color: rgba(71, 71, 71, 0.315);
}
.hs-top-icon {
margin: 18px;
}
.hs-bottom-icon {
height: 3rem;
margin: 10px;
cursor: pointer;
}