Abbreviate selected repo name if too long

This commit is contained in:
Joscha 2025-01-28 02:30:55 +01:00
parent 45d97388ee
commit 4d798dd2e2
2 changed files with 12 additions and 8 deletions

View file

@ -4,12 +4,12 @@ import NavbarDropdown from "./NavbarDropdown.vue";
</script>
<template>
<div class="flex justify-between bg-black p-2 text-white">
<div class="flex justify-between gap-1 bg-black p-2 text-white">
<NavbarDropdown />
<div
class="flex items-center rounded-md bg-neutral-800 px-1 hover:bg-neutral-700 active:bg-neutral-500"
class="flex items-center rounded-md bg-neutral-800 px-2 hover:bg-neutral-700 active:bg-neutral-500"
>
<RiSettings3Fill class="h-4" />
<RiSettings3Fill size="16px" class="inline" />
</div>
</div>
</template>