Fix search box overflow in narrower sidebar

Add box-sizing: border-box to include padding within width.
Slightly reduce vertical padding for better fit.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2025-11-23 13:32:03 -05:00
parent 0fd498431b
commit e607e262bd
+2 -1
View File
@@ -334,13 +334,14 @@
.sidebar-search input {
width: 100%;
padding: 0.5rem;
padding: 0.4rem 0.5rem;
border: 1px solid var(--border-color-dark);
border-radius: 3px;
font-size: 0.75rem;
background: var(--bg-color);
color: var(--text-color);
transition: border-color 0.2s;
box-sizing: border-box;
}
.sidebar-search input:focus {