Skip to content

Commit

Permalink
fix: right padding for nav bar
Browse files Browse the repository at this point in the history
edfloreshz authored and mmstick committed Nov 6, 2024
1 parent 8d4afb9 commit 6dfd9d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/mod.rs
Original file line number Diff line number Diff line change
@@ -809,7 +809,7 @@ impl<App: Application> ApplicationExt for App {
.nav_bar()
.map(|nav| id_container(nav, iced_core::id::Id::new("COSMIC_nav_bar")))
{
widgets.push(container(nav).padding([0, 0, 8, 8]).into());
widgets.push(container(nav).padding([0, 8, 8, 8]).into());
true
} else {
false

0 comments on commit 6dfd9d7

Please sign in to comment.