Skip to content

Commit

Permalink
fix: fix image selection
Browse files Browse the repository at this point in the history
  • Loading branch information
AlejandroAkbal committed May 10, 2021
1 parent 7c5367f commit d68e84e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions components/pages/posts/content/Post.vue
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
type="button"
:aria-expanded="isActive"
aria-label="Toggle tags panel"
class="relative w-full h-auto group"
class="relative w-full h-auto pointer-events-auto group"
@click="toggleTags"
@keydown.enter="toggleTags"
>
Expand All @@ -37,7 +37,9 @@
/>

<!-- Fix for focus ring not applying on other elements -->
<div class="absolute inset-0 ring-inset group-focus:focus-util"></div>
<div
class="absolute inset-0 pointer-events-none ring-inset group-focus:focus-util"
></div>
</button>
</div>
</template>
Expand Down

0 comments on commit d68e84e

Please sign in to comment.