STYLE Updating social buttons aspect

This commit is contained in:
Nonimart 2025-06-20 15:01:05 +02:00
parent 19a3a0d313
commit a4e4f41767

View File

@ -36,8 +36,17 @@
.socials-buttons {
@apply flex gap-4;
&__button {
@apply bg-white text-carhop-green-700 px-4 py-2 font-normal w-32 rounded-full border-primary w-fit border-2 flex items-center gap-2;
@apply bg-white text-carhop-green-700 px-4 py-2 font-normal rounded-full border-primary w-fit border-2 flex items-center gap-2;
transition: transform 0.3s ease-in-out;
&:hover {
transform: scale(1.05);
}
&[disabled='true'] {
@apply opacity-50 cursor-not-allowed;
}
img {
@apply w-8 h-8 filter-primary;
}