Skip to content

Commit

Permalink
fix(ui): reverse the connecting animation (#356)
Browse files Browse the repository at this point in the history
  • Loading branch information
edimitchel committed Dec 29, 2021
1 parent 360a011 commit e9dc52f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/ui/client/components/ConnectionOverlay.vue
Expand Up @@ -21,7 +21,7 @@ import { client, isConnected, isConnecting } from '~/composables/state'
>
<div
text="5xl"
:class="isConnecting ? 'i-carbon:renew animate-spin' : 'i-carbon-wifi-off'"
:class="isConnecting ? 'i-carbon:renew animate-spin animate-reverse' : 'i-carbon-wifi-off'"
/>
<div text-2xl>
{{ isConnecting ? 'Connecting...' : 'Disconnected' }}
Expand Down

0 comments on commit e9dc52f

Please sign in to comment.