From a4e4f417676090046ee85aa152508fa9c4170ef7 Mon Sep 17 00:00:00 2001 From: Nonimart Date: Fri, 20 Jun 2025 15:01:05 +0200 Subject: [PATCH] STYLE Updating social buttons aspect --- resources/css/components/post-header.css | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) 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; }