Feature: open and focus game card from quick search results

This commit is contained in:
Ponte
2026-03-05 19:44:18 +01:00
parent 98671d4dcd
commit 7a6c3965e8
2 changed files with 92 additions and 1 deletions

View File

@@ -398,6 +398,16 @@ h1 {
border-radius: 10px;
padding: 0.5rem 0.6rem;
background: #ffffff;
cursor: pointer;
transition: border-color 140ms ease, box-shadow 140ms ease, transform 140ms ease;
}
.search-hit:hover,
.search-hit:focus-visible {
border-color: #9fc3e6;
box-shadow: 0 0 0 3px rgba(70, 130, 180, 0.16);
transform: translateY(-1px);
outline: none;
}
.search-hit strong {