[READ-ONLY] a fast, modern browser for the npm registry
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: update SettingsToggle server fallback to prevent layout shift

+2 -2
+2 -2
app/components/Settings/Toggle.server.vue
··· 6 6 </script> 7 7 8 8 <template> 9 - <div class="w-full flex items-center justify-between gap-4"> 9 + <div class="w-full flex items-center justify-between gap-4 py-1 -my-1"> 10 10 <span v-if="label" class="text-sm text-fg font-medium text-start"> 11 11 {{ label }} 12 12 </span> 13 13 <SkeletonBlock class="h-6 w-11 shrink-0 rounded-full" /> 14 14 </div> 15 - <p v-if="description" class="text-sm text-fg-muted"> 15 + <p v-if="description" class="text-sm text-fg-muted mt-2"> 16 16 {{ description }} 17 17 </p> 18 18 </template>