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:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user