We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9bde06a commit 73e1dc5Copy full SHA for 73e1dc5
crates/companion-app/src/main.rs
@@ -384,9 +384,8 @@ fn view(state: &State) -> Element<'_, Message> {
384
// todo: show something when no profiles found
385
text("Found profiles:").size(20),
386
Column::from_iter(profiles),
387
- server_ok_block,
388
- app_update_block,
389
- config_reset_block,
+ // using separate nested column to prevent spacing between empty elements
+ column![server_ok_block, app_update_block, config_reset_block],
390
row![
391
button("Register").on_press_maybe(
392
if state.server_ok
0 commit comments