Skip to content

Commit 771474a

Browse files
authored
fix: centre align engines (#719)
1 parent b914c04 commit 771474a

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

app/components/compare/FacetRow.vue

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ function isCellLoading(index: number): boolean {
7878
<div
7979
v-for="(value, index) in values"
8080
: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"
8282
>
8383
<!-- Background bar for numeric values -->
8484
<div
@@ -103,7 +103,10 @@ function isCellLoading(index: number): boolean {
103103

104104
<!-- Value display -->
105105
<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+
>
107110
<!-- Date values use DateTime component for i18n and user settings -->
108111
<DateTime v-if="value.type === 'date'" :datetime="value.display" date-style="medium" />
109112
<template v-else>{{ value.display }}</template>

0 commit comments

Comments
 (0)