Skip to content

Commit 67db577

Browse files
authored
Merge branch 'main' into fix/i18n-turkish-missing-translations
2 parents 21e4467 + af71229 commit 67db577

3 files changed

Lines changed: 4 additions & 7 deletions

File tree

app/components/Code/Viewer.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ watch(
115115
<!-- Code content -->
116116
<div class="code-content flex-1 overflow-x-auto min-w-0">
117117
<!-- eslint-disable vue/no-v-html -- HTML is generated server-side by Shiki -->
118-
<div ref="codeRef" class="code-lines w-fit" v-html="html" />
118+
<div ref="codeRef" class="code-lines min-w-full w-fit" v-html="html" />
119119
<!-- eslint-enable vue/no-v-html -->
120120
</div>
121121
</div>
@@ -157,7 +157,7 @@ watch(
157157
158158
/* Highlighted lines in code content - extend full width with negative margin */
159159
.code-content :deep(.line.highlighted) {
160-
background: rgb(234 179 8 / 0.2); /* yellow-500/20 */
160+
@apply bg-yellow-500/20;
161161
margin: 0 -1rem;
162162
padding: 0 1rem;
163163
}

app/components/Package/WeeklyDownloadStats.vue

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -413,10 +413,7 @@ const config = computed<VueUiSparklineConfig>(() => {
413413
<span v-else-if="isLoadingWeeklyDownloads" class="min-w-6 min-h-6 -m-1 p-1" />
414414
</template>
415415

416-
<div
417-
class="w-full overflow-hidden h-[76px] egg-pulse-target"
418-
:class="{ 'egg-pulse': eggPulse }"
419-
>
416+
<div class="w-full h-[76px] egg-pulse-target" :class="{ 'egg-pulse': eggPulse }">
420417
<template v-if="isLoadingWeeklyDownloads || hasWeeklyDownloads">
421418
<ClientOnly>
422419
<VueUiSparkline class="w-full max-w-xs" :dataset :config>

app/pages/about.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ const roleLabels = computed(
164164
</h2>
165165
<AboutLogoList
166166
:list="SPONSORS"
167-
class="flex-col gap-6 items-start md:flex-row md:items-center md:gap-4"
167+
class="grid grid-cols-2 md:flex md:flex-row md:items-center"
168168
/>
169169
</div>
170170

0 commit comments

Comments
 (0)