From c9843bf4f213160cf5e57d145cf851f89af3d1e8 Mon Sep 17 00:00:00 2001 From: Temmie Date: Wed, 13 Aug 2025 21:26:14 +0200 Subject: [PATCH] style: change navbar button colours on hoverr --- components/Guild/GuildNavbar.vue | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/components/Guild/GuildNavbar.vue b/components/Guild/GuildNavbar.vue index 127057f..c490d73 100644 --- a/components/Guild/GuildNavbar.vue +++ b/components/Guild/GuildNavbar.vue @@ -74,6 +74,12 @@ const props = defineProps(); .button { color: var(--secondary-text-color); + transition: color 300ms; + right: 0; } + +.button:hover { + color: var(--primary-highlighted-color); +} \ No newline at end of file