mirror of
https://github.com/kennethreitz/kjvstudy.org.git
synced 2026-06-05 23:00:16 +00:00
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:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user