You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
447 B

  1. .footer {
  2. background-color: mc('blue-grey','50');
  3. display: flex;
  4. justify-content: space-between;
  5. align-items: center;
  6. padding: 0 25px;
  7. height: 70px;
  8. font-size: 13px;
  9. font-weight: 500;
  10. color: mc('blue-grey','500');
  11. position: absolute;
  12. right: 0;
  13. bottom: 0;
  14. left: 0;
  15. ul {
  16. padding: 0;
  17. margin: 0;
  18. list-style-type: none;
  19. display: flex;
  20. justify-content: center;
  21. align-items: center;
  22. li {
  23. padding: 0 15px;
  24. }
  25. }
  26. }