carhop__carhop-theme__DEV/resources/css/components/social-networks-links.css
Antoine M af587612f9
All checks were successful
continuous-integration/drone/push Build is passing
REFACTOR: Ensure list items are not styled with default list styles
2026-05-21 10:33:35 +02:00

27 lines
456 B
CSS

.social-networks-links {
@apply flex gap-2;
li {
@apply !list-none;
}
.social-link {
@apply transition-all duration-300 ease-out block;
transform: scale(1);
filter: saturate(1) brightness(1);
&:hover {
transform: scale(1.1);
filter: saturate(1.2) brightness(1);
}
&:after {
@apply !content-none;
}
}
.social-icon {
@apply w-full h-auto;
width: 48px;
}
}