_footer.scss 507 B

1234567891011121314151617181920212223242526272829
  1. #footer{
  2. width: 100%;
  3. background: $light-grey;
  4. .block{
  5. @include inlineflex;
  6. width: 100%;
  7. margin: 20px 0;
  8. -webkit-box-pack: center;
  9. -ms-flex-pack: center;
  10. justify-content: center;
  11. p{
  12. padding: 0 20px;
  13. img{
  14. width: 100%;
  15. max-width: 150px;
  16. height: auto;
  17. }
  18. &:nth-of-type(1){
  19. img{
  20. float: right;
  21. }
  22. }
  23. &:not(:nth-of-type(1)){
  24. border-left: 1px solid black;
  25. }
  26. }
  27. }
  28. }