From c009abc0a708b2b5bea71f079fbc35c2a0358875 Mon Sep 17 00:00:00 2001 From: Aadil Ayub Date: Fri, 28 Jun 2024 19:35:34 +0500 Subject: [PATCH] add hover effect to tags --- functions.php | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/functions.php b/functions.php index 1c143e3..b42b60f 100644 --- a/functions.php +++ b/functions.php @@ -85,7 +85,13 @@ function jett_block_styles() { margin-bottom: 5px; font-size: 13px; font-weight: 500; + transition: 0.25s ease-in-out; } + + .is-style-hashtags.taxonomy-post_tag.wp-block-post-terms a:hover { + box-shadow: rgb(195 195 195) 2px 2px 0 0; + transform: translate(-2px, -2px); + } ' ) ); @@ -145,3 +151,5 @@ function cc_mime_types($mimes) { return $mimes; } add_filter('upload_mimes', 'cc_mime_types'); + +// enable wordpress customizer \ No newline at end of file