Skip to content

Commit db82b4c

Browse files
authored
Merge pull request #70 from NikiforovAll/bugfix/filter-footer-overlap
🐛 fix(filter): add bottom margin to prevent footer overlap
2 parents 98c62b5 + bf167a1 commit db82b4c

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)