31 lines
458 B
SCSS
31 lines
458 B
SCSS
// Sticky Footer solution
|
|
body.sticky-footer {
|
|
height: 100%;
|
|
min-height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
#page-wrapper {
|
|
flex: 1 0 auto;
|
|
}
|
|
}
|
|
|
|
.home{
|
|
footer{
|
|
color: #acb3c2;
|
|
p{
|
|
font-size: 1rem!important;
|
|
line-height: 1rem!important;
|
|
display: inline-flex;
|
|
position: fixed;
|
|
bottom: 20px;
|
|
right: 20px;
|
|
a{
|
|
img{
|
|
width: 20px!important;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|