Increased spacing between lock screen options.

This commit is contained in:
Damian Büchel 2024-01-15 12:17:07 +01:00
parent 1e9d37ac13
commit 5f6a57cd24
2 changed files with 2 additions and 2 deletions

View file

@ -138,7 +138,7 @@ namespace SafeExamBrowser.UserInterface.Desktop.Windows
FontSize = Message.FontSize,
Foreground = Message.Foreground,
IsChecked = options.First() == option,
Margin = new Thickness(2.5),
Margin = new Thickness(2.5, options.First() == option ? 2.5 : 7.5, 2.5, options.Last() == option ? 2.5 : 7.5),
Tag = option.Id,
VerticalContentAlignment = VerticalAlignment.Center
});

View file

@ -138,7 +138,7 @@ namespace SafeExamBrowser.UserInterface.Mobile.Windows
FontSize = Message.FontSize,
Foreground = Message.Foreground,
IsChecked = options.First() == option,
Margin = new Thickness(5),
Margin = new Thickness(5, options.First() == option ? 5 : 10, 5, options.Last() == option ? 5 : 10),
Tag = option.Id,
VerticalContentAlignment = VerticalAlignment.Center
});