15 lines
295 B
CSS
15 lines
295 B
CSS
|
@layer components {
|
||
|
.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;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|