Make site logo and title clickable links to homepage

- Wrapped site icon and title text in anchor tags linking to homepage
- Added hover effect (opacity: 0.8) for better UX
- Maintained current language when navigating to home
- Added aria-label for accessibility
- No text decoration or color changes on links
This commit is contained in:
juanatsap
2025-11-09 15:04:42 +00:00
parent 857162385f
commit b6dbd6af75
2 changed files with 26 additions and 2 deletions
+20
View File
@@ -88,6 +88,26 @@ a:hover {
padding: 0 .5rem 0 1.5rem;
}
/* Site logo and title links */
.site-logo-link,
.site-title-link {
text-decoration: none;
color: inherit;
display: flex;
align-items: center;
height: 36px;
transition: opacity 0.2s ease;
}
.site-logo-link:hover,
.site-title-link:hover {
opacity: 0.8;
}
.site-logo-link {
padding: 0;
}
/* Ensure Iconify icons display properly */
.iconify,
iconify-icon {