2019-05-27 17:03:03 +02:00

30 lines
507 B
SCSS

#footer{
width: 100%;
background: $light-grey;
.block{
@include inlineflex;
width: 100%;
margin: 20px 0;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
p{
padding: 0 20px;
img{
width: 100%;
max-width: 150px;
height: auto;
}
&:nth-of-type(1){
img{
float: right;
}
}
&:not(:nth-of-type(1)){
border-left: 1px solid black;
}
}
}
}