Add a bit of margin to icon in server list

save-path-regex
Pat Hartl 2023-11-05 12:56:53 -06:00
parent 508f5c18fb
commit 16ba48ed6c
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@
<Selection Key="@(context.Id.ToString())" /> <Selection Key="@(context.Id.ToString())" />
<PropertyColumn Property="s => s.Name" Sortable Hidden="@(Picker.IsColumnHidden("Name"))" /> <PropertyColumn Property="s => s.Name" Sortable Hidden="@(Picker.IsColumnHidden("Name"))" />
<PropertyColumn Property="s => s.Game" Hidden="@(Picker.IsColumnHidden("Game"))"> <PropertyColumn Property="s => s.Game" Hidden="@(Picker.IsColumnHidden("Game"))">
<Image Src="@GetIcon(context.Game)" Height="32" Width="32" Preview="false"></Image> <Image Src="@GetIcon(context.Game)" Height="32" Width="32" Preview="false" Style="margin-right: 8px"></Image>
@context.Game?.Title @context.Game?.Title
</PropertyColumn> </PropertyColumn>
<PropertyColumn Property="s => s.CreatedOn" Format="MM/dd/yyyy hh:mm tt" Sortable Hidden="@(Picker.IsColumnHidden("Created On"))" /> <PropertyColumn Property="s => s.CreatedOn" Format="MM/dd/yyyy hh:mm tt" Sortable Hidden="@(Picker.IsColumnHidden("Created On"))" />