diff --git a/frontend/src/app/about/about.component.html b/frontend/src/app/about/about.component.html
index cbd8798f..31bfc865 100644
--- a/frontend/src/app/about/about.component.html
+++ b/frontend/src/app/about/about.component.html
@@ -61,14 +61,14 @@
{{ member.name }}
Please use our issue trackers or the Telegram group, for general questions and support.
- If a matter needs to be discussed privately, feel free to pick any of those channels:
+ If a matter needs to be discussed privately, feel free to pick any of these channels:
keyoxide.org/D245D484F3578CB17FD6DA6B67DB29BFF3C96757
+ >these channels.
diff --git a/frontend/src/app/mirrors/mirrors.component.html b/frontend/src/app/mirrors/mirrors.component.html
index 1756e44c..3e75ff5c 100644
--- a/frontend/src/app/mirrors/mirrors.component.html
+++ b/frontend/src/app/mirrors/mirrors.component.html
@@ -63,7 +63,8 @@
class="pi"
[ngClass]="{
'pi-check-circle text-green': mirror.healthy,
- 'pi-exclamation-circle text-red': !mirror.healthy,
+ 'pi-exclamation-circle text-red': !mirror.healthy && !mirror.last_update,
+ 'pi-fast-backward text-peach': !mirror.healthy && mirror.last_update,
}"
>
diff --git a/frontend/src/app/theme.ts b/frontend/src/app/theme.ts
index 1bd59a0f..426ca97f 100644
--- a/frontend/src/app/theme.ts
+++ b/frontend/src/app/theme.ts
@@ -1,6 +1,6 @@
-import Aura from '@primeng/themes/aura';
-import { definePreset } from '@primeng/themes';
import * as flavors from '@catppuccin/palette';
+import { definePreset } from '@primeng/themes';
+import Aura from '@primeng/themes/aura';
const mocha = flavors.flavors.mocha;
export const Catppuccin = definePreset(Aura, {
@@ -380,6 +380,18 @@ export const Catppuccin = definePreset(Aura, {
},
},
},
+ components: {
+ tooltip: {
+ colorScheme: {
+ light: {
+ background: mocha.colors.crust.hex,
+ },
+ dark: {
+ background: mocha.colors.crust.hex,
+ },
+ },
+ },
+ },
});
export const CatppuccinFlavors: string[] = [