diff --git a/resources/css/app.css b/resources/css/app.css index 9256192..a2ed2d4 100644 --- a/resources/css/app.css +++ b/resources/css/app.css @@ -24,6 +24,7 @@ @import './components/article-tag.css'; @import './components/page-header.css'; @import './components/notyf.css'; +@import './components/social-networks-links.css'; /* ########### LAYOUT ############ */ @import './layout/nav.css'; diff --git a/resources/css/components/social-networks-links.css b/resources/css/components/social-networks-links.css new file mode 100644 index 0000000..88c7f7c --- /dev/null +++ b/resources/css/components/social-networks-links.css @@ -0,0 +1,27 @@ + +.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; + } +}