Skip to content

Commit bf167a1

Browse files
committed
🐛 fix(filter): add bottom margin to prevent footer overlap
Add margin-bottom: 1 to FilterInput to ensure proper spacing above the footer. Previously, the filter input overlapped with the footer's keyboard shortcuts when activated with '/'.
1 parent 98c62b5 commit bf167a1

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/lazyclaude/styles/app.tcss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,12 +123,12 @@ FilterInput {
123123
height: 3;
124124
border: solid $accent;
125125
padding: 0 1;
126+
margin-bottom: 1;
126127
display: none;
127128
}
128129

129130
FilterInput.visible {
130131
display: block;
131-
margin-bottom: 0;
132132
}
133133

134134
FilterInput:focus-within {

src/lazyclaude/widgets/filter_input.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ class FilterInput(Widget):
2121
height: 3;
2222
border: solid $accent;
2323
padding: 0 1;
24+
margin-bottom: 1;
2425
display: none;
2526
}
2627

0 commit comments

Comments
 (0)