_footer.scss 450 B

123456789101112131415161718192021222324252627282930
  1. // Sticky Footer solution
  2. body.sticky-footer {
  3. height: 100%;
  4. min-height: 100vh;
  5. display: flex;
  6. flex-direction: column;
  7. #page-wrapper {
  8. flex: 1 0 auto;
  9. }
  10. }
  11. .home{
  12. footer{
  13. color: #acb3c2;
  14. display: inline-flex;
  15. position: fixed;
  16. bottom: 20px;
  17. right: 20px;
  18. p{
  19. font-size: 1rem!important;
  20. line-height: 1rem!important;
  21. a{
  22. img{
  23. width: 20px!important;
  24. }
  25. }
  26. }
  27. }
  28. }