style: change navbar button colours on hoverr
All checks were successful
ci/woodpecker/push/build-and-publish Pipeline was successful
ci/woodpecker/pr/build-and-publish Pipeline was successful

This commit is contained in:
Twig 2025-08-13 21:26:14 +02:00
parent e3288c0787
commit c9843bf4f2
Signed by: twig
SSH key fingerprint: SHA256:nBO+OwpTkd8LYhe38PIqdxmDvkIg9Vw2EbrRZM97dkU

View file

@ -74,6 +74,12 @@ const props = defineProps<INavbar>();
.button { .button {
color: var(--secondary-text-color); color: var(--secondary-text-color);
transition: color 300ms;
right: 0; right: 0;
} }
.button:hover {
color: var(--primary-highlighted-color);
}
</style> </style>