17 lines
199 B
SCSS
17 lines
199 B
SCSS
.SocialMediaContainer {
|
|
width: 80%;
|
|
|
|
display: flex;
|
|
justify-content: space-around;
|
|
align-items: center;
|
|
|
|
a {
|
|
span {
|
|
transition: all 0.5s;
|
|
}
|
|
:hover {
|
|
transform: scale(1.05);
|
|
}
|
|
}
|
|
}
|