20 lines
291 B
SCSS
20 lines
291 B
SCSS
.social-icons {
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
|
|
.social-icons__link {
|
|
padding: 0.8rem;
|
|
|
|
&:not(:last-child) {
|
|
margin-right: 1em;
|
|
}
|
|
|
|
.social-icons__icon {
|
|
width: 1.4rem;
|
|
height: 1.4rem;
|
|
background-size: contain;
|
|
background-repeat: no-repeat;
|
|
}
|
|
}
|