File: /var/www/quadcode-site/src/style/components/social.scss
.social {
&__items {
display: flex;
align-items: center;
}
&__item {
width: 40px;
height: 40px;
background-repeat: no-repeat;
margin-right: 40px;
@include breakpoint-down('deskM') {
width: 32px;
height: 32px;
background-size: contain;
margin-right: 36px;
}
a {
width: 100%;
height: 100%;
display: block;
}
&:last-of-type {
margin-right: 0;
}
&_twitter {
background-image: url("../assets/resource/twitter.svg");
}
&_facebook {
background-image: url("../assets/resource/facebook.svg");
}
&_linkedin {
background-image: url("../assets/resource/linkedin.svg");
}
}
}