diff --git a/src/App/Controls/CipherViewCell/CipherViewCell.xaml b/src/App/Controls/CipherViewCell/CipherViewCell.xaml index 2ed40b071..cda2f01d0 100644 --- a/src/App/Controls/CipherViewCell/CipherViewCell.xaml +++ b/src/App/Controls/CipherViewCell/CipherViewCell.xaml @@ -39,15 +39,16 @@ AutomationProperties.IsInAccessibleTree="False" /> ("deviceActionService"); - _iconColumn.Width = new GridLength(40 * deviceActionService.GetSystemFontSizeScale(), GridUnitType.Absolute); + var fontScale = ServiceContainer.Resolve("deviceActionService").GetSystemFontSizeScale(); + _iconColumn.Width = new GridLength(ICON_COLUMN_DEFAULT_WIDTH * fontScale, GridUnitType.Absolute); + _iconImage.WidthRequest = ICON_IMAGE_DEFAULT_WIDTH * fontScale; + _iconImage.HeightRequest = ICON_IMAGE_DEFAULT_WIDTH * fontScale; } public bool? WebsiteIconsEnabled