13 lines
229 B
SCSS
13 lines
229 B
SCSS
|
.social_links {
|
||
|
@apply flex gap-5 justify-center flex-wrap my-5;
|
||
|
|
||
|
& > .social_link {
|
||
|
& > svg {
|
||
|
@apply mx-auto scale-150 mb-1;
|
||
|
}
|
||
|
|
||
|
& > span {
|
||
|
@apply text-sm;
|
||
|
}
|
||
|
}
|
||
|
}
|