fix: address PR #24 review comments - SpeechRecognition types, CSS hover over direct DOM, shared useDebounce

This commit is contained in:
Marko (Hermes Implementer)
2026-05-29 05:10:06 +00:00
parent 6a223d7237
commit ade810a013
7 changed files with 169 additions and 83 deletions
+13
View File
@@ -0,0 +1,13 @@
.bookCard {
background: #fff;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
cursor: pointer;
transition: transform 0.15s, box-shadow 0.15s;
}
.bookCard:hover {
transform: translateY(-2px);
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}