footer.scss 653 B

123456789101112131415161718192021222324252627282930313233
  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. &__logo {
  23. width: 104px;
  24. margin-right: 18px;
  25. padding-top: 12px;
  26. &-img {
  27. max-width: 100%;
  28. height: auto;
  29. }
  30. }
  31. }