Skip to content

Commit 2508878

Browse files
authored
feat: add RTL support to ConnectorStatus (#326)
1 parent fe33bf3 commit 2508878

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

app/components/ConnectorStatus.client.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ const ariaLabel = computed(() => {
7575
<!-- Operation count badge (overlaid) -->
7676
<span
7777
v-if="isConnected && operationCount > 0"
78-
class="absolute -top-0.5 -right-0.5 min-w-[1rem] h-4 px-1 flex items-center justify-center font-mono text-[10px] rounded-full"
78+
class="absolute -top-0.5 -inset-ie-0.5 min-w-[1rem] h-4 px-1 flex items-center justify-center font-mono text-[10px] rounded-full"
7979
:class="hasPendingOperations ? 'bg-yellow-500 text-black' : 'bg-blue-500 text-white'"
8080
aria-hidden="true"
8181
>
@@ -93,7 +93,7 @@ const ariaLabel = computed(() => {
9393
<div
9494
v-if="showTooltip"
9595
role="tooltip"
96-
class="absolute right-0 top-full mt-2 px-2 py-1 font-mono text-xs text-fg bg-bg-elevated border border-border rounded shadow-lg whitespace-nowrap z-50"
96+
class="absolute inset-ie-0 top-full mt-2 px-2 py-1 font-mono text-xs text-fg bg-bg-elevated border border-border rounded shadow-lg whitespace-nowrap z-50"
9797
>
9898
{{ tooltipText }}
9999
</div>

0 commit comments

Comments
 (0)