Skip to content

Commit

Permalink
Fix button margins on landing page
Browse files Browse the repository at this point in the history
  • Loading branch information
sandermvanvliet committed Nov 21, 2023
1 parent fb4efd0 commit 0a09aae
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/RoadCaptain.App.RouteBuilder/Views/LandingPage.axaml
Original file line number Diff line number Diff line change
Expand Up @@ -236,9 +236,9 @@
<Setter Property="Margin" Value="4,0,0,0" />
</Style>
</StackPanel.Styles>
<TextBlock Text="Or search a route to use as a starter" />
<Button Content="Search" Command="{Binding Path=SearchRouteCommand}" />
<TextBlock Text="or open a route from a file on your machine" />
<TextBlock Text="Or search a route to use as a starter" Margin="0,0,4,0" />
<Button Content="Search" Command="{Binding Path=SearchRouteCommand}" Margin="0,0,4,0" />
<TextBlock Text="or open a route from a file on your machine" Margin="0,0,4,0" />
<Button Content="Open" Command="{Binding Path=OpenRouteFromFileCommand}" />
</StackPanel>
</Grid>
Expand Down

0 comments on commit 0a09aae

Please sign in to comment.