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.

26 lines
420 B

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