diff --git a/src/App/Pages/Vault/ViewPage.xaml b/src/App/Pages/Vault/ViewPage.xaml
index 0d398768b..fd9ac313e 100644
--- a/src/App/Pages/Vault/ViewPage.xaml
+++ b/src/App/Pages/Vault/ViewPage.xaml
@@ -110,10 +110,12 @@
Grid.Column="0" />
_totpLow;
- set => SetProperty(ref _totpLow, value);
+ set
+ {
+ SetProperty(ref _totpLow, value);
+ Page.Resources["textTotp"] = Application.Current.Resources[value ? "text-danger" : "text-default"];
+ }
}
public async Task LoadAsync()
diff --git a/src/App/Styles/Base.xaml b/src/App/Styles/Base.xaml
index d8d7f94a4..91b4cf775 100644
--- a/src/App/Styles/Base.xaml
+++ b/src/App/Styles/Base.xaml
@@ -11,6 +11,21 @@
+
+
+