feat: make clicking on logo in header bring you back to homepage

This commit is contained in:
frosty
2026-03-31 05:59:32 +03:00
parent 71d3d0dcb0
commit 335b6f4683
4 changed files with 16 additions and 6 deletions

View File

@@ -178,6 +178,16 @@ h1 {
h1 span {
color:var(--accent);
}
.logo-link {
text-decoration:none;
color:inherit;
}
header .logo-link {
transition:transform 0.2s;
}
header .logo-link:hover {
transform:scale(1.03);
}
.search-box {
width: 100%;
padding: 12px 24px;