Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions app/components/Package/Header.vue
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ const likeAction = async () => {

<template>
<!-- Package header -->
<header class="bg-bg pt-5 w-full container">
<header class="bg-bg pt-5 pb-1 w-full container">
<!-- Package name and version -->
<div class="flex items-baseline justify-between gap-x-2 gap-y-1 flex-wrap min-w-0">
<CopyToClipboardButton
Expand Down Expand Up @@ -319,7 +319,7 @@ const likeAction = async () => {
</header>
<div
ref="header"
class="w-full bg-bg sticky top-14 z-50 border-b border-border pt-2"
class="w-full bg-bg sticky top-14 z-10 border-b border-border pt-2"
:class="[$style.packageHeader]"
data-testid="package-subheader"
>
Expand Down Expand Up @@ -453,6 +453,10 @@ const likeAction = async () => {
display: none;
}

.packageNav > :global(a:focus-visible) {
outline-offset: -2px !important;
}
Comment thread
alexdln marked this conversation as resolved.
Outdated

@media (max-width: 639.9px) {
.packageNav > :global(a kbd) {
display: none;
Expand Down
Loading