@@ -26,7 +26,7 @@ const emit = defineEmits<{
2626 <div class =" mb-2" >
2727 <component
2828 :is =" headingLevel ?? 'h3'"
29- class =" font-mono text-base font-medium text-fg group-hover:text-fg transition-colors duration-200 min-w-0 break-all"
29+ class =" font-mono text-sm sm:text- base font-medium text-fg group-hover:text-fg transition-colors duration-200 min-w-0 break-all"
3030 >
3131 <NuxtLink
3232 :to =" { name: 'package', params: { package: result.package.name.split('/') } }"
@@ -40,9 +40,12 @@ const emit = defineEmits<{
4040 </NuxtLink >
4141 </component >
4242 </div >
43- <div class =" flex justify-between items-start gap-8" >
43+ <div class =" flex justify-between items-start gap-4 sm:gap- 8" >
4444 <div >
45- <p v-if =" result.package.description" class =" text-fg-muted text-sm line-clamp-2 mb-3" >
45+ <p
46+ v-if =" result.package.description"
47+ class =" text-fg-muted text-xs sm:text-sm line-clamp-2 mb-2 sm:mb-3"
48+ >
4649 <MarkdownText :text =" result.package.description" />
4750 </p >
4851 <div class =" flex flex-wrap items-center gap-x-4 gap-y-2 text-xs text-fg-subtle" >
@@ -81,6 +84,7 @@ const emit = defineEmits<{
8184 :provider =" result.package.publisher.trustedPublisher.id"
8285 :package-name =" result.package.name"
8386 :version =" result.package.version"
87+ :linked =" false"
8488 compact
8589 />
8690 </div >
@@ -100,7 +104,7 @@ const emit = defineEmits<{
100104 <ul
101105 v-if =" result.package.keywords?.length"
102106 aria-label =" Keywords"
103- class =" flex flex-wrap gap-1.5 mt-3 pt-3 border-t border-border list-none m-0 p-0"
107+ class =" relative z-10 flex flex-wrap gap-1.5 mt-3 pt-3 border-t border-border list-none m-0 p-0"
104108 >
105109 <li v-for =" keyword in result.package.keywords.slice(0, 5)" :key =" keyword" >
106110 <NuxtLink
0 commit comments