Skip to content

Commit

Permalink
Arrange margins for DropdownField
Browse files Browse the repository at this point in the history
  • Loading branch information
enisn committed Jul 13, 2024
1 parent 5b9051b commit 43d1db4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/UraniumUI.Material/Controls/DropdownField.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ public class DropdownField : InputField
public override View Content { get; set; } = new Dropdown
{
VerticalOptions = LayoutOptions.Center,
Margin = new Thickness(15, 0),
#if WINDOWS
Margin = new Thickness(5, 0, 0, 0),
#endif
HorizontalOptions = LayoutOptions.Fill,
StyleClass = new List<string> { "InputField.Dropdown" }
};
Expand Down

0 comments on commit 43d1db4

Please sign in to comment.