footer.scss 599 B

12345678910111213141516171819202122232425262728293031323334353637
  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. @each $color, $colorvalue in $material-colors {
  27. &.is-#{$color} {
  28. background-color: mc($color,'50');
  29. color: mc($color,'500');
  30. }
  31. }
  32. }