diff --git a/components/HamburgerMenu.vue b/components/HamburgerMenu.vue index b46d23c..52401f3 100644 --- a/components/HamburgerMenu.vue +++ b/components/HamburgerMenu.vue @@ -26,7 +26,12 @@ const getSvgIcon = async (name: string) => {
-
  • +
  • @@ -36,6 +41,11 @@ const getSvgIcon = async (name: string) => { preload="auto" /> {{ item.title }} +
  • @@ -133,6 +143,20 @@ html.dark .drawer { width: 100%; } +.drawer li.dominant a { + background: royalblue; + color: white; + font-weight: bold; +} + +.drawer li.dominant img { + filter: invert(1); +} + +.drawer li.dominant a:hover { + background: skyblue; +} + .drawer li a { /* overwrite tailwind */ text-decoration: none; diff --git a/components/Navbar.vue b/components/Navbar.vue index 2e2c63e..78e3b80 100644 --- a/components/Navbar.vue +++ b/components/Navbar.vue @@ -9,11 +9,16 @@ const props = defineProps<{ activeItem?: string }>();