We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 67c7ab4 commit b596dc5Copy full SHA for b596dc5
1 file changed
custom/NavbarJobs.vue
@@ -1,5 +1,5 @@
1
<template>
2
- <div ref="dropdownRef">
+ <div class="relative" ref="dropdownRef">
3
<div class="cursor-pointer hover:scale-110 transition-transform" @click="isDropdownOpen = !isDropdownOpen">
4
<div class="relative flex items-center justify-center" v-if="jobs.length > 0">
5
<Tooltip>
@@ -30,7 +30,7 @@
30
leave-from-class="opacity-100 scale-100"
31
leave-to-class="opacity-0 scale-95"
32
>
33
- <div v-show="isDropdownOpen" class="absolute right-28 top-14 md:top-12 rounded z-10 overflow-y-auto max-h-96 ">
+ <div v-show="isDropdownOpen" class="absolute right-0 top-14 md:top-12 rounded z-10 overflow-y-auto max-h-96 ">
34
<JobsList
35
:closeDropdown="() => isDropdownOpen = false"
36
:jobs="jobs"
0 commit comments