🐞 fix: Adjust social icon styling

This commit is contained in:
Keith Solomon
2026-06-28 14:11:46 -05:00
parent a761c16802
commit 2399023286
7 changed files with 37 additions and 8 deletions
+11 -1
View File
@@ -34,7 +34,17 @@ $profile = getFieldValue( 'social_media.profile_name' ) ? getFieldValue( 'social
?>
</nav>
<?php get_template_part( 'views/partials/social-media' ); ?>
<?php
get_template_part(
'views/partials/social-media',
null,
array(
'circle' => false,
'classes' => 'social-icons p-0 hover:opacity-80!',
'size' => '16',
)
);
?>
<span class="font-semibold text-16px"><?php echo esc_html( $profile ); ?></span>
</div>