footer.scss 474 B

1234567891011121314151617181920212223
  1. .footer {
  2. display: -webkit-flex;
  3. display: -ms-flex;
  4. display: flex;
  5. flex: 0 0 auto;
  6. padding-top: 20px;
  7. background: #3b434d;
  8. color: #9e9e9e;
  9. font-size: 14px;
  10. &__item {
  11. padding-bottom: 20px;
  12. }
  13. &__right {
  14. display: -webkit-flex;
  15. display: -ms-flex;
  16. display: flex;
  17. flex-direction: column;
  18. justify-content: flex-end;
  19. align-items: flex-end;
  20. align-content: flex-end;
  21. }
  22. }