We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf5b755 commit a3b8efcCopy full SHA for a3b8efc
1 file changed
app/components/PackageDownloadStats.vue
@@ -68,11 +68,9 @@ const config = computed(() => ({
68
Weekly Downloads
69
</h2>
70
</div>
71
- <div class="w-full">
+ <div class="w-full overflow-hidden">
72
<ClientOnly>
73
- <div>
74
- <VueUiSparkline :dataset :config />
75
- </div>
+ <VueUiSparkline class="max-w-full" :dataset :config />
76
<template #fallback>
77
<!-- Skeleton matching sparkline layout: title row + chart with data label -->
78
<div class="min-h-[100px]">
@@ -115,4 +113,8 @@ const config = computed(() => ({
115
113
Geist Mono,
116
114
monospace !important;
117
}
+.vue-ui-sparkline,
+.vue-ui-sparkline svg {
118
+ max-width: 100% !important;
119
+}
120
</style>
0 commit comments