diff --git a/resources/css/components/post-header.css b/resources/css/components/post-header.css index d0829f1..62968aa 100644 --- a/resources/css/components/post-header.css +++ b/resources/css/components/post-header.css @@ -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; }