-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
18 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
pub fn view() -> iced::Element<'static, crate::Message> { | ||
iced::widget::column![iced::widget::horizontal_rule(1)] | ||
.padding(iced::Padding::from([ | ||
1. * crate::REM, | ||
0., | ||
0.5 * crate::REM, | ||
0., | ||
])) | ||
// We're fixing the height here to unitfy it | ||
// with the height of entries for a smooth | ||
// scrolling experience | ||
.height(crate::ENTRY_HEIGHT) | ||
.into() | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
pub mod divider; | ||
pub mod entry; | ||
pub mod plugin_header; | ||
pub mod query_input; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters