footer.scss 420 B

1234567891011121314151617181920212223242526
  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. }