CommonUpdateIndicator.vue 411 B

12345678910111213141516
  1. <!-- Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/ -->
  2. <template>
  3. <div
  4. class="indicator absolute -top-[3px] h-1.5 w-1.5 animate-pulse rounded-full bg-pink-500 ltr:-right-[3px] rtl:-left-[3px]"
  5. role="status"
  6. aria-live="polite"
  7. :aria-label="$t('Has update')"
  8. ></div>
  9. </template>
  10. <style scoped>
  11. .router-link-active > * > .indicator {
  12. @apply bg-white;
  13. }
  14. </style>