[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: centre align engines (#719)

authored by

abeer0 and committed by
GitHub
771474a4 b914c043

+5 -2
+5 -2
app/components/compare/FacetRow.vue
··· 78 78 <div 79 79 v-for="(value, index) in values" 80 80 :key="index" 81 - class="comparison-cell relative flex items-end justify-center px-4 py-3 border-b border-border" 81 + class="comparison-cell relative flex items-center justify-center px-4 py-3 border-b border-border" 82 82 > 83 83 <!-- Background bar for numeric values --> 84 84 <div ··· 103 103 104 104 <!-- Value display --> 105 105 <template v-else> 106 - <span class="relative font-mono text-sm tabular-nums" :class="getStatusClass(value.status)"> 106 + <span 107 + class="relative font-mono text-sm text-center tabular-nums" 108 + :class="getStatusClass(value.status)" 109 + > 107 110 <!-- Date values use DateTime component for i18n and user settings --> 108 111 <DateTime v-if="value.type === 'date'" :datetime="value.display" date-style="medium" /> 109 112 <template v-else>{{ value.display }}</template>