sigit.io/src/pages/landing/style.module.scss

30 lines
553 B
SCSS
Raw Normal View History

@import '../../colors.scss';
.landingPage {
display: flex;
flex-direction: column;
align-items: center;
color: $text-color;
min-height: 80vh;
justify-content: center;
padding-top: 20px;
.loginBottomBar {
display: flex;
justify-content: center;
align-items: center;
padding: 10px;
background-color: rgba(255, 255, 255, 0.7);
border-top: 1px solid rgba(0, 0, 0, 0.096);
position: fixed;
bottom: 0;
left: 0;
right: 0;
.loginBtn {
// margin-top: 20px;
min-width: 200px;
}
}
}