_footer.scss 438 B

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