fixing made by > heart acessibility

This commit is contained in:
Antoine M 2024-05-22 09:36:01 +02:00
parent 78fce4da37
commit 7be2ab8e7a
2 changed files with 9 additions and 2 deletions

View File

@ -116,7 +116,7 @@
<img class="homegrade-sigle-icon" src="<?php echo get_template_directory_uri() . '/resources/img/logos/logo-homegrade-sigle.svg' ?>" alt="">
<div>
&copy; <?php echo date_i18n('Y'); ?> - <?php echo get_bloginfo('name'); ?>
<p class="made-by">Made with
<p class="made-by" lang="en">Made with
<span>
<svg viewBox="0 0 825.22 700.44">
<g>

View File

@ -79,8 +79,9 @@
.made-by {
@apply w-fit flex justify-center items-center text-neutral-600 font-semibold text-xs pt-1;
svg {
transition: all 0.5s;
@apply w-3 h-3 mx-1 fill-secondary;
animation: fade-in-out 2.5s linear infinite;
animation: fade-in-out 2.5s linear 2;
}
a {
@apply underline pl-1;
@ -91,6 +92,12 @@
}
}
}
&:hover {
.made-by svg {
@apply animate-pulse;
transform: scale(1.2);
}
}
}
.legal-credits {